/* -----------Media Queries----------- */

@media screen and (max-width: 500px) {
    #contact h1{
        font-size: 1.5rem;
    }
    :root{
        font-size: 0.9rem
    };
}

@media screen and (max-width: 700px) {
    /* .navbar{
        display: none;
    } */
    
    .about-container{
        margin-top: 1rem;
    }
}


@media screen and (max-width: 1050px) {
    #about{
        padding: 1rem;
        flex-direction: column;
    }
    .second-about{
        margin-top: 1rem;
    }
}

/* -----------Animations-------------- */
@keyframes swipeDown {
    0%{
        bottom: 0;
    }
    25%{
        bottom: 10px;
    }
    50%{
        bottom: 20px;
    }
    75%{
        bottom: 10px;
    }
    100%{
        bottom: 0;
    }
}

@keyframes glow {
    0%{
        text-shadow: none;
    }
    25%{
        text-shadow: 0px 0px 3px cyan , 0px 0px 6px cyan;
    }
    50%{
        text-shadow: 0px 0px 3px cyan , 0px 0px 6px cyan, 0px 0px 9px cyan;
    }
    75%{
        text-shadow: 0px 0px 3px cyan , 0px 0px 6px cyan;
    }
    100%{
        text-shadow: none;
    }
}

@keyframes rotate {
    0%{
        transform: rotate(0deg);
    }
    25%{
        transform: rotate(45deg);
    }
    50%{
        transform: rotate(90deg);
    }
    75%{
        
        transform: rotate(45deg);
    }
    100%{
        transform: rotate(0deg);
    }
}