html, body {
    margin: 0;
    padding: 0;
    font-family: 'Comfortaa', sans-serif;
    background-color: #EEF0F4;
    user-select: none;
}

.container {
    display: flex;
    flex-direction: column;
    max-width: 320px;
    margin: 30px auto;
}

.menu {
    display: flex;
    justify-content: flex-end;
}

.user-section {
    position: absolute;
    top: 0;
    right: 0;
}

.user-section img {
    width: 36px;
    border-radius: 50%;
    cursor: pointer;
}

.user-section img:hover {
    background-color: #6d035141;
}

.icon-btn {
    background-color: transparent;
}

span {
    font-weight: 600;
    color: #836695;
    font-style: normal;
}

#greeting-header {
    margin-top: 50px;
    text-align: center;
    font-weight: 200;
    font-style: italic;
}

.provider-btn {
    color: var(--dark-color);
    background-color: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    border: 0;
    box-shadow: 3px 3px 3px 1px rgba(0, 0, 0, .25);
    padding: 0;
    width: 100%;
}


#email-input, #password-input, #sign-in-btn, #create-account-btn {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.main-img {
    margin: 0 auto 20px auto;
}

input {
    color: #432000;
    background-color: #DCE1EB;
    border: none;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    font-size: 1em;
    outline: none;
    color: #432000;
}

button {
    background-color: #836695;
    color: #FDFDFD;
    margin: 10px 0;
    padding: 10px;
    border-radius: 10px;
    border: none;
    font-size: 1em;
    cursor: pointer;
}

#add-button:hover, #sign-in-with-google-btn:hover, 
#sign-in-btn:hover, #create-account-btn:hover {
    color: #FDFDFD;
    background-color: #40036D;
}

ul{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
}
li {
    list-style: none;
    font-size: 1.1em;
    text-align: center;
    flex-grow: 1;
    background-color: #FEFEDF;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
    padding: 10px;
    color: #4D4352;
    /* font-weight: 700; */
    border-radius: 5px;
    cursor: pointer;
}

li:hover {
    background-color: #4D4352;
    color: #FEFEDF;
}

#logged-out-view {
    display: none;
}

#logged-in-view {
    display: none;
}

#update-profile-view {
    flex-direction: column;
    display: none;
}

#update-profile-view input {
    margin-bottom: 20px;
}

#update-profile-button {
    margin: 0;
}

#update-profile-view button:hover {
    color: #FDFDFD;
    background-color: #40036D;
}

#back-to-app {
    margin-top: 25px;
    cursor: pointer;
}

#main-app-view {
    display: flex;
    flex-direction: column;
}