@font-face {
    font-family: "Montserrat";
    src: url("./../fonts/Montserrat/static/Montserrat-Regular.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 1vh;
    background-color: #2c2e48;
}
::-webkit-scrollbar-thumb {
    background-color: #6b3180;
    border-radius: 8px;
    transition: .3s ease;
}::-webkit-scrollbar-thumb:hover {
    background-color: #8e44ad;
}

html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

body {
    background-color: #0b0c1c;
    color: #e7e9f6;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    display: flex;
    flex-direction: column;
}

section {
    gap: 6rem;
}

section.main {
    flex: 1;
}

.nav__container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 1vh;
    height: 10vh;
    background-color: #9395d5;
    border-radius: 8px;
}

.logo__heading {
    font-weight: 800;
    cursor: default;
}

li {
    list-style-type: none;
    list-style: none;
    text-decoration: none;
    display: inline-flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 0 1rem;
    font-weight: 500;
    cursor: pointer;
}

.menu__items {
    border-radius: 8px;
    padding: .7rem 1rem;
    background-color: #6b3180;
    transition: all .3s ease-out;
} .menu__items:hover {
    background-color: #8e44ad;
}

.footer__container {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: center;
    margin: 4vh 10vh;
    padding: 1.2vh 0;
    height: 9vh;
    gap: 1vh;
    background-color: #7174b6;
    border-radius: 8px;
}

.footer__socials {
    display: flex;
    justify-content: center;
    gap: 1.2vh;
    margin-top: 1vh;
}

.socials {
    width: 3vh;
    height: 3vh;
    mix-blend-mode: color-burn;
    filter: grayscale(100%);
    cursor: pointer;
}

.main__container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 6vh;
    margin: 5vh 15vh;
    padding: 2vh;
}
.main__container h1 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
}

@media (max-width: 1000px) {
    .main__container {
        margin: 5vh 5vh;
        padding: 2vh 1vh;
    }
    .main__container h1 {
        font-size: 2rem;
    }
    .nav__container {
        flex-direction: column;
        gap: 1vh;
        padding: 4vh 0;
    }
    .nav__container li {
        margin: 0;
    }
    .footer__container {
        margin: 4vh 2vh;
        padding: 1.2vh 0;
        height: auto;
    }
}