.avis-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem;
}

.container-avis {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#output {
    text-align: center;
    margin-top: 10px;
    font-size: 1.5rem;
}
.container-avis h2{
    font-size: 2.5rem;
    color: #000037;
}
.container-avis p {
    font-size: 1.2rem;
    color: #000037;
}

.star {
    font-size: 10vh;
    cursor: pointer;
    color: #000037;
}


.one {
    color: #ff0000;
}

.two {
    color: #ff6a00;
}

.three {
    color: #fbff78;
}

.four {
    color: #ffff00;
}

.five {
    color: #189f0e;
}

@media  screen and (max-width:768px) {
    .container-avis h2{
        font-size: 1.5rem;
    }
    .avis-section {
        padding: 2rem;
    }
    #output {
        font-size: 1rem;
    }
    .star {
        font-size: 4.5vh;
    }
    .container-avis p {
        font-size: 1rem;
        margin: 1rem 0;
    }
}

/* Popup style */
.popup{
    width: 50%;
    margin: auto;
    background-color: #131C43;
    padding: 10px;
    border-radius: 15px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    border: #fff solid 1px;
    display: none;
}
.openPopup{
    display: block!important;
}
.popup label{
    color: #fff;
    font-weight: bold;
    font-size: 18px;
}
.popup .message-commentaire{
    background-color: none;
    border: solid 1px #fff;
    height: 50px;
    padding: 10px;
    font-size: 18px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    border-radius: 15px;
    margin: 10px 0;
}
.popup textarea:focus{
    outline: none;
}
.bouton-commentaire{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.popup  #close,
.popup input{
    flex-basis: 50%;
    width: 100%;
    border: none;
    padding: 10px;
    border-radius: 15px;
    cursor: pointer;
}
.popup input{
    background-color: #3599D1;
    color: #fff;
}
.popup  #close{
    background-color: #ff5151;
    color: #000037;
}

@media screen and (max-width:768px){
    .popup{
        width: 90%;
        margin: auto;
        padding: 10px;
        border-radius: 15px;
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
        border: #000037 solid 1px;
        display: none;
    }
}
