:root{
    --White: hsl(0, 0%, 100%);
--LightGrey: hsl(217, 12%, 63%);
--DarkBlue: hsl(213, 19%, 18%);
--VeryDarkBlue: hsl(216, 12%, 8%);
--Orange: hsl(25, 97%, 53%)
}

body{
    font-size: 15px;
}

 .Rating {
    background-color: var(--VeryDarkBlue);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.Rating{
    /* display: none; */
    z-index: 2;
}
.container, .container2{
    border: none;
    background-color: var(--DarkBlue);
    padding: 30px 20px 20px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.Rating .container img{
    border: none;
    background-color: var(--LightGrey);
    border-radius: 50px;
    padding: 5px;
}

.rating-div{
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.rating-button{
    border-radius: 50px;
    border: none;
    background-color: var(--LightGrey);
    padding: 10px 15px;
}

.Submit{
    width: 100%;
    padding: 10px;    
    border-radius: 20px;
    border: none;
    background-color: var(--Orange);
}

button:active{
    background-color: white;
}

h1{
    color: white;
    font-size: 20px;
}

p{
    color: var(--LightGrey);
}

.container2 img+p{
    color: var(--Orange);
    border-radius: 20px;
    background-color: var(--LightGrey);
    padding: 10px 5px;
}
.container2{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
@media screen and (min-width:1024px) {
    .container , .container2{
        max-width: 20em;
    }

}