body {
    background: rgb(26, 25, 25);
    font-family: sans-serif;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    margin: 0px;
}

.panel-container {
    background-color: #1d1c1c;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    width: 700px;
    padding: 30px;
    border-radius: 4px;
    font-size: 90%;
}

.panel-container strong{
    line-height: 20px;
    text-align: center;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 500px;
}

.ratings-container {
    display: flex;
    margin: 20px 0px;   
}

.rating {
    flex: 1;
    cursor: pointer;
    padding: 20px;
    margin: 10px 5px;
}

.rating:hover, .rating.active {
    background-color: #ccc;
    border-radius: 4px;
    transition: 1s ease;
}

.rating .icon {
    width: 40px;
    font-size: 5rem;
    margin-left: 5px;
}

.btn {
    background-color: #fff;
    color: #000;
    outline: 0;
    padding: 12px 30px;
    border-radius: 4px;
    border: 0;
    cursor: pointer;
}

.btn:active {
    transform: scale(0.98);
}

.heart {
    font-size: 3rem;
    margin-bottom: 10px;
}