*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --first-color: rgb(231, 216, 216);
    --second-color: rgb(60, 49, 82);
    --third-color: #1f1f1f;
    --updated-color: rgb(20, 16, 36);
    --hover-color: rgb(60, 49, 82);
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--updated-color);
} 

.header{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    background-color: var(--second-color);
    color: var(--first-color);
    overflow: hidden;
    
}

ul{
    display: flex;
    font-size: 16px;
    font-weight: 600px;
    
}



/*p {
    justify-content: center;
    align-items: center;
    font-size: 36px;
    font-weight: 600px;
}*/

.loginLocation{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    flex-direction: column;
    top: 35%;
    box-shadow: var(--second-color) 0px 0px 10px;
    border-radius: 5px;
    height: 200px;
    width: 200px;
    color: var(--first-color);
} 

.loginLocation:hover{
    transform: scale(1.1);
    transition: 0.5s;
}

#login{
    text-decoration: none;
    border: none;
    outline: none;
    background-color: var(--first-color);
    color: var(--second-color);
    border-radius: 8px;
    height: 40px;
    width: 80px;
    font-weight: 600;
    cursor: pointer;
    
}
#access{
    text-decoration: none;
    border: none;
    outline: none;
    background-color: var(--first-color);
    color: var(--second-color);
    border-radius: 8px;
    height: 40px;
    width: 80px;
    font-weight: 600;
    cursor: pointer;
}
#menor{
    text-decoration: none;
    border: none;
    outline: none;
    background-color: var(--first-color);
    color: var(--second-color);
    border-radius: 8px;
    height: 20px;
    width: 40px;
    font-weight: 600;
    cursor: pointer;
}
#plus{
    text-decoration: none;
    border: none;
    outline: none;
    background-color: var(--first-color);
    color: var(--second-color);
    border-radius: 8px;
    height: 20px;
    width: 40px;
    font-weight: 600;
    cursor: pointer;
}

.footer{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    flex-direction: column;
    top: 90%;
    background-color: var(--second-color);
    color: var(--first-color);
    width: 100%;
    height: 150px;
}

.alertError{
    color: red;
    position: absolute;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}


.loggedIn{
    color: green;
    position: absolute;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

