html{
    scroll-behavior: smooth;
}


body{
    background: #0F3249;
    font-family: 'Baloo Tamma 2', cursive;
}

.m-head{
    font-family: 'Roboto Slab', serif;

}

.navigation-link{
     border: 2px solid transparent;
}

.navigation-link:hover{
    text-decoration: none;
    border-bottom: 2px solid #B6D185 ;
    transition: 0.5s ease;
}

.main-container{
    min-height: 100vh;
   
}

.main_row{
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_row img{
    width: auto;
    height: 100vh;
}

.main_row h1{
    font-size: 3rem;
    animation-name: movetoright;
    animation-duration: 2s;
    animation-delay: 1.5s;
    animation-fill-mode: backwards;
}
.main_row h2{
    font-size: 25px;
    animation-name: movetoleft;
    animation-duration: 2s;
}
.main_row a{
    text-decoration: none;
    width: 100px;
    background: #eee;
    padding: 9px;
    margin: px;
    border: 2px solid #eee;
    border-radius: 50px;
    font-size: 20px;
    outline: none;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 15px;
 }

.btn-res{
    color: #000000;
    animation-name: btn;
    animation-duration: 3s;
    animation-delay: 2.5s;
    animation-fill-mode: backwards;
}


#about{
    background: #5A667F ;
    border-radius: 0.5rem;
}


 .card{
     border-bottom: solid 8px #ffcc00;
 }

#Social-Media{
   ;

}

.media-link{
    padding: 1rem;
    margin-left: 1rem;
    max-width: 15rem;
    border: 2px solid #f5ba09;
    border-radius: 0.5rem;
   
}

.quote{
    font-size: 70px;
    letter-spacing: 5px;
}
.container hr{
    background: yellow;
}

footer {
  background: #5A667F ;
}
footer .logo{
    cursor: pointer;
}

.icon-bar{
    background: white;
}


@keyframes movetoright{
    0%{
        transform: translateX(-120px);
        opacity: 0;
    }

    100%{
        
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes movetoleft{
    0%{
        transform: translateX(120px);
        opacity: 0;
    }

    100%{
        
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes btn{
    0%{
        opacity: 0;
    }

    100%{
        opacity: 1;
    }
}

