@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Aguafina+Script&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: 'Outfit', sans-serif;
    font-style: normal;
    user-select: none;
}

:root {
    --body-color: #FFFFFF;

    --background-color-white: #FFFFFF;
    --background-color-yellow: #FFCA3B;

    --text-color-black: #363636;
    --text-color-yellow: #FFCA3B;
    --text-color-white: #FFFFFF;
}

body {
    height: max-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--body-color);
}

/* -- NavBar -- */
.navbar {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    height: 65px;

    background-color: var(--background-color-white);
    
    transition: 0.3s;
    z-index: 99;
}

.navbar.scrolled-down {
    height: 80px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.14);
}

span.logo {
    position: relative;
    font-family: 'Aguafina Script';
    font-size: 2rem;
    z-index: 99;
}

span.b {
    font-family: 'Aguafina Script';
    color: var(--text-color-yellow);
}

.links {
    display: flex;
    gap: 30px;
}

.links a {
    position: relative;
    color: var(--text-color-black);
    transition: 0.2s;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    border-radius: 5px;
    background-color: var(--background-color-yellow);
    transition: 0.2s;
}

.links a:hover::before {
    width: 100%;
    transition: 0.3s;
}

.links a:hover {
    transition: 0.3s;
}

.container {
    margin: 10px 5%;
    width: 90%;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-download {
    border: 2px solid var(--background-color-yellow);
    width: 180px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    color: var(--text-color-black);
    transition: 0.2s;
}

.btn-download:hover {
    background-color: #ffcb3b25;
    transition: 0.3s;
}

.burger {
    margin-right: 40px;
    width: 30px;
    height: 30px;
    position: relative;
    display: none;
}

.burger i {
    display: none;
    position: absolute;
    font-size: 1.7rem;
    cursor: pointer;
}

i.active {
    display: block;
}

@media screen and (max-width: 1000px) {
    .links {
        display: none;
    }

    .links a::before {
        bottom: -10px;
    }

    .links.active {
        background-color: var(--background-color-white);
        position: absolute;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .links a.btn-download {
        display: flex;
        width: 90%;
    }

    .links a.btn-download::before {
        bottom: 0px;
    }

    .burger {
        z-index: 99;
        display: block;
    }
}