*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background-color: #2f5e4d;
    
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;

}

.container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction:column;
    gap: 1.25rem;
    width: 75%;
}

#moodImg{
    height: 200px;
}

.mood-slider{
    width: 100%;
    height: 5px;
    background-color: #cccccc;
    color: white;
    border-radius: 5rem;
}

/* google chrome, safari */
.mood-slider::-webkit-slider-thumb{
    -webkit-appearance: none;
    appearance: none;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: black;
} 

.mood-slider::-moz-range-thumb{
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
     background-color: black;
}