/*Global Styles*/
html {
    scroll-behavior: smooth;
}

body {
    background-color: rgb(228, 255, 235);
    margin-left: 20px;
    margin-right: 20px;
}

body::-webkit-scrollbar {
    background-color: #fff;
    width: 16px
}

body::-webkit-scrollbar-track {
    background-color: #fff
}

body::-webkit-scrollbar-thumb {
    background-color: #babac0;
    border-radius: 16px;
    border: 4px solid #fff
}

body::-webkit-scrollbar-button {
    display: none
}

p{
    font-family: 'Rowdies', cursive;
}

@media (prefers-reduced-motion: no-preference) {
    .fa-recycle{
      animation: fa-recycle-spin infinite 12s linear;
    }
}

@keyframes fa-recycle-spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
}

.description p{
    font-family: 'Baloo Tamma 2', cursive;
}

a{
    font-family: 'Oswald', sans-serif;
}

.team-member a{
    font-family: 'Lemonada', cursive;
}

.team-member span{
    font-family: 'Roboto', sans-serif;
}

.quote{
    font-family: 'Lemonada', cursive;
}

.articles-container, .teamMessages{
    font-family: 'Baloo Tamma 2', cursive;
}

.nav-container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.topnav {
    border-radius: 50px;
    background-color: rgb(96, 170, 226);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'IBM Plex Sans', sans-serif;
    width: 80%;
    
}

.topnav a {
    float: left;
    color: black;
    text-align: center;
    padding: 13px;
    margin: auto;
    text-decoration: none;
    font-size: 16px;
}

.topnav i{
    font-size: 24px;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column wrap;
    margin-top: 20px;
    text-align: center;
    padding: 1rem;
    text-align: center;
    font-family: 'IBM Plex Sans', sans-serif;
}

.footer p{
    font-family: 'Red Rose', cursive;
}

a, i {
    color: black;
    text-decoration: none;
    transition: all 300ms ease-out
}

a:hover, i:hover {
    color: #72dae7;
}

#inactive{
    color: black;
}

#inactive:hover{
    color: black;
}

/*.zahvier{
    display: none;
}*/

h5{
    font-size: 14px;
}

@media(max-width: 500px) {

    a:hover, i:hover {
        color: #72dae7;
    }

    .description {
        background-color: transparent;
        margin-left: 40px;
        margin-right: 40px;
        font-size: 15px;
        
    }

    .topnav {
        width: 90%;
    }
}