@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::selection {
    background-color: rgb(232, 3, 3);
    color: rgb(255, 255, 255);
}

::-webkit-scrollbar-thumb {
    background: rgb(232, 3, 3);
    border-radius: 15px;
}

::-webkit-scrollbar-track {
    background: rgb(15, 15, 15);
}

::-webkit-scrollbar {
    width: 5px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    background-color: rgb(15, 15, 15);
    color: rgb(255, 255, 255);
}

a {
    text-decoration: none;
}

img {
    user-select: none;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10%;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.4s ease-in-out;
}

header img {
    width: 100px;
}

header nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

header nav a {
    color: rgb(255, 255, 255);
    font-size: 18px;
    text-transform: uppercase;
    transition: all 0.15s ease-in-out;
}

header nav a:hover {
    filter: drop-shadow(0 0 8px rgb(255, 255, 255));
}

footer {
    background-color: rgb(15, 15, 15);
    padding-bottom: 50px;
}

footer hr {
    border: none;
    outline: none;
    height: 1px;
    background-color: rgb(255, 255, 255, 0.5);
    width: 70%;
    margin: 20px auto;
}

footer .footer-con {
    display: flex;
    gap: 100px;
    align-items: center;
    width: 70%;
    margin: auto;
}

footer .footer-con img {
    width: 200px;
}

footer .footer-con nav {
    display: flex;
    flex-direction: column;
}

footer .footer-con nav a {
    color: rgb(255, 255, 255);
    font-size: 18px;
    margin-bottom: 10px;
    transition: all 0.15s ease-in-out;
}

footer .footer-con nav a:hover {
    filter: drop-shadow(0 0 8px rgb(255, 255, 255));
}

footer .copy {
    font-size: 15px;
    text-align: center;
}

@media screen and (max-width: 1175px) {
    footer .footer-con {
        gap: 50px;
        width: 70%;
        margin: auto;
    }
}

@media screen and (max-width: 975px) {
    header img {
        width: 100px;
    }

    header nav {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    header nav a {
        font-size: 16px;
    }

    footer hr {
        width: 90%;
        margin: 20px auto;
    }

    footer .footer-con {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 90%;
        margin: auto;
        flex-wrap: wrap;
    }

    footer .footer-con img {
        width: 200px;
    }

    footer .footer-con nav a {
        font-size: 15px;
    }

    footer .copy {
        font-size: 13px;
        margin-top: 30px;
    }
}

@media screen and (max-width: 700px) {
    header {
        display: block;
    }
    
    header img {
        display: block;
        width: 100px;
        margin: auto;
    }

    header nav {
        gap: 14px;
        margin-top: 10px;
        justify-content: center;
    }

    header nav a {
        font-size: 16px;
    }
    
    footer .footer-con {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    footer .footer-con img {
        width: 200px;
    }
    
    footer .footer-con nav a {
        font-size: 15px;
    }
}