@import url(navbar.scss);

.parent {
    animation: fadeInAnimation ease 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
 
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}


.parent{
    display: flex;
    align-items: center;
    height: 80vh;
    .row{
        align-items: center;
    }
    h1{
        margin: 0;
        margin-bottom: 4vh;
    }
    .svgimg{
        width: 1.7vh;
    }
}

@media screen and (max-width: 400px) {
    h3{
        margin-top: 2rem;
    }
    .col-md-6:nth-child(1){
        margin-bottom: 3vw;
    }
}

@media screen and (max-height: 400px) {
    .parent{
        display: grid;
    }
}