:root {
    --background: #000;
    --text-color: #FFF;
    --button: #8257E5;
    --border: #29292E;
    --border-menu-mobile: #29292E;
    --text-color-menu-mobile: #E1E1E6;
}

body {
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--background);
    background-image: url('./blur-2.png'), url('./blur-1.png');
    background-repeat: no-repeat, no-repeat;
    background-position: top right, bottom left;
    background-size: contain;
    font-family: 'Manrope', sans-serif;
}

a {
    text-decoration: none;
    color: white;
}

button {
    background-color: transparent;
    border: var(--button) 2px solid;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    font-weight: 700;
    padding: 10px 30px;
}

.container {
    padding: 30px;
    color: white;
    display: flex;
    flex-direction: column;
    max-width: 960px;
    margin: 0 auto;
    height: 100vh;
    padding-bottom: 0;
    justify-content: space-between;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-mobile {
    display: none;
}

#menu-button {
    display: none;
}

#links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.text {
    display: none;
}

.text > h2{
    margin: 0;
}

.button-center {
    display: none;
}

#title{
    display: flex;
    font-size: 3rem;
    flex-direction: column;
    align-items: center;
}

#title .great{
    color: var(--background);
    text-shadow: -1px -1px 0 var(--button), 1px -1px 0 var(--button), -1px 1px 0 var(--button), 1px 1px 0 var(--button);
    margin: 0;
}

#title > h1{
    margin-top: 0;
    margin-bottom: 0;
}

@media (max-width: 800px) {
    body {
        background-image: none;
        background-image: url('./blur-mobile.png');
        background-repeat: no-repeat;
        background-position: bottom;
        background-size: cover;
    }

    .container {
        padding: 0;
        height: 100vh;
    }

    .nav {
        display: block;
    }

    .nav-bar {
        border-bottom: var(--border-menu-mobile) solid 0.01rem;
        padding: 20px;
    }

    .logo-mobile {
        display: initial;
    }

    .logo-rocket {
        display: none;
    }

    #menu-button {
        display: initial;
    }

    #links {
        display: none;
    }

    #links.active {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0rem;
    }

    #links.active > a {
        width: 100%;
        padding: 10px 20px;
        color: var(--text-color-menu-mobile);
        border-bottom: var(--border-menu-mobile) solid 0.01rem;
    }
    
    #links.active > a:hover {
        border-left: 3px solid var(--button);
        color: var(--text-color);
        font-weight: 700;
    }

    .button-coffee {
        display: none;
    }

    .text {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 1.5rem;
        padding: 20px;
    }

    .text.deactive {
        display: none;
    }

    .button-center {
        display: flex;
        justify-content: center;
    }

    .button-center.deactive {
        display: none;
    }

    .greatcoffee.deactive {
        display: none;
    }

    #title {
        display: flex;
        font-size: 2rem;
        flex-direction: column;
        align-items: center;
    }

    #title.deactive {
        display: none;
    }
}

@media (max-width: 550px){
    .text {
        font-size: 1.2rem;
   }
   
    #title {
        font-size: 1.5rem;
   }
}
