@import"https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400&display=swap";

:root {
    font-family: Poppins, sans-serif;
    line-height: 1.5;
    font-weight: 400;
    color-scheme: light dark;
    color: #ededed;
    background-color: #081b29;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    --bg-color: #040e1e;
    --second-bg-color: #03142f;
    --text-color: #ededed;
    --main-color: #00abf0
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth !important;
    font-size: 62.5%
}

html::-webkit-scrollbar {
    width: .3rem
}

html::-webkit-scrollbar-thumb {
    background-color: #ffffff39;
    width: .1rem;
    border-radius: 1rem
}

@media (max-width: 1200px) {
    html {
        font-size: 55%
    }
}

@media (max-width: 991px) {
    #header {
        padding: 2rem 4%
    }

    #home {
        padding: 0 4%
    }

    #about,
    #education,
    #skills,
    #hobbies {
        padding: 4rem 4%
    }

    #contact {
        padding: 0 4%
    }

    #footer {
        padding: 2rem 4%
    }
}

@media (max-width: 520px) {
    html {
        font-size: 50%
    }
}

@keyframes showRight {
    to {
        width: 0
    }
}