*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    padding: 15px;
    text-align: center;
}
.container{
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.star-rating-cointainer{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}
.container h1{
    margin: 20px;
}
.fa-star-o::before{
    content: '\f006';
    font-size: 50px;
}
.selected-rating-container{
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
}
.selected-rating-container p{
    font-size: 20px;
    font-weight: bold;
}
.fa-star-o:hover{
    cursor: pointer;
}
.fa-star::before{
    content:'\f005';
    color: rgb(243,243,86);
    font-size: 50px;
}

