body {
    font-family: Arial, sans-serif;
    color: green;
}

h2 {
    color: #4CAF50;
}

.stars {
    opacity: 0.5;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 5px;
}



.highlighted {
    background: linear-gradient(to bottom, #ffd700, #ff8c00);
    opacity: 1;
}

.emoji {
    font-size: 2rem;
    text-align: center;
    margin-top: 10px;
}

.buttons {
    text-align: center;
    margin-top: 20px;
}

.btn {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    cursor: pointer;
}

.btn-review {
    background-color: green;
    color: white;
}

.btn-contact {
    background-color: #4CAF50;
    color: white;
}