*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html{
    font-size: 16px;
}
body{
    background-color: #2f5e4d;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.container{
    width: 75%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1.25rem;
}
#MoodImg{
    height: 200px;
}
.MoodSlider{
    width: 100%;
    height: 5%;
    background-color: #cccccc;
    color: white;
    border-radius: 5rem;
}
.MoodSlider::-webkit-slider-thumb{
    appearance: none;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: black;
    cursor: pointer;
}
.MoodSlider::-moz-range-thumb{
    appearance: none;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: black;
    cursor: pointer;
}