:root{
    --background-primary: #2C241F;
    --background-secundary: #3A312B;
    --cards-background: #F7F3EE;
    --text-primary: #BFA27A;
    --text-secundary: #E6DED6;
    --text-third: #1E1814;
    --hover: #A38965;
}
.navbar{
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    font-size: 18px;
    padding: 1.9rem;
}
.navbar ul{
    display: flex;
    list-style: none;
}
.navbar a{
    text-decoration: none;
    color: var(--text-secundary);
    font-weight: bolder;
    font-family: 'Funnel Display', Arial, monospace;
}
.navbar .navbar-left{
    justify-self: start;
}
.navbar .navbar-center{
    justify-self: center;
}
.navbar .navbar-center ul{
    gap: 1.5rem;
}
.navbar .navbar-right{
    justify-self: end;
}
.navbar .navbar-right ul{
    gap: 0.5rem;
}
.navbar .register{
    background-color: var(--text-primary);
    color: var(--text-third);
    padding: 0.4rem 1.5rem;
    border-radius: 10px;
}
.navbar .login{
    color: var(--text-primary);
    padding: 0.4rem 1rem;
}
/* Phone Nav-Bar */

.phone-navbar{
    font-family: 'Funnel Display', Arial, monospace;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 2rem;
}
.phone-navbar h2{
    font-size: 48px;
    color: #daf7e9
}
.phone-navbar button{
    color: #408A71;
    font-size: 32px;
    font-weight: bolder;
    background-color: #ffffff00;
    border-style: none;
}


/* Footer */
footer {
    font-family: 'Funnel Display', Arial, monospace;;
    width: 100%;
    background-color: var(--text-third);
    padding: 1rem;
    color:#070f0f;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer-rights{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    color: var(--text-primary);
}
.footer-nav {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}
.footer-nav ul{
    list-style: none;
    display: flex;
    gap: 1rem;
}
.footer-nav ul a{
    text-decoration: none;
    color: var(--text-secundary)
}
