:root{
    --Orange: hsl(25, 97%, 53%);
    --White: hsl(0, 0%, 100%);
    --Light-Grey: hsl(217, 12%, 63%);
    --Medium-Grey: hsl(216, 12%, 54%);
    --Dark-Blue: #252d37;
    --Very-Dark-Blue: #1f2630;
    --Font: #141519;
}

html{
    height: 100%;
}
body{
    margin:0;
    font-family: Overpass;
    background-color: var(--Font);
    height: 100%;
    display: flex;
    flex-flow: column;
}

.container-rating{
    margin: auto;
    width: 230px;
    background-color: var(--Very-Dark-Blue);
    border-radius: 7px;
    padding: 15px;
}
.star-container{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--Dark-Blue);
}
.star-img{
    margin-left: 12px;
    margin-top: 11px;
}
p{
    color: var(--White);
    font-family:Overpass;
}
.title{
    font-weight: 700;
    font-size: 20px;
    margin: 20px 0px 15px 0px;

}
.text{
    font-weight: 400;
    font-size: 10px;
    color: var(--Medium-Grey);
    padding-bottom: 10px;
}
.buttons{
    width: 100%;
    display: flex;
    justify-content: center;
}
.select-button{
    background-color: var(--Dark-Blue);
    margin: auto;
    width:38px;
    height: 38px;
    border-radius: 50%;
    border-style: none;
    color: var(--Medium-Grey);
    font-size: 11px;
}
.select-button:hover{
    background-color: var(--Light-Grey);
    cursor: pointer;
    color: var(--White);
}
.submit-button{
    background-color:var(--Orange);
    margin-top: 12px;
    padding: 7px 0;
    border-radius: 15px;
    border-style: none;
    width: 100%;
    color: var(--White);
    font-size: 11px;
}
.submit-button:hover{
    cursor: pointer;
}

/* Siguiente pantalla */

.container-submitted{
    margin: auto;
    width: 230px;
    background-color: var(--Very-Dark-Blue);
    border-radius: 7px;
    padding: 15px;
    display: flex;
    flex-flow: column;
    align-items: center;
}
.img-thanks{
    height: 100px;
}
.stars-number{
    margin-top: 19px;
    border-style: none;
    border-radius: 19px;
    padding: 5px 11px;
    background-color:var(--Dark-Blue);
    color:var(--Orange);
}
.container-submitted p:nth-child(3){
    font-size: 20px;
    font-weight: 700;
    margin:20px 0px 10px 0px;
}
.container-submitted p:nth-child(4){
    font-size: 12px;
    font-weight: 400;
    margin:0 5px;
    text-align: center;
    color:var(--Medium-Grey)
}
.inactive {
    display: none;
  }
.attribution{
    color:var(--White)
}
a:visited{
    color: var(--White);
}