:root{
    --Fondo1: hsl(300, 43%, 22%);
    --Fondo2: hsl(300, 43%, 22%, 0.1);
    --Verificado: hsl(333, 80%, 67%);
    --FondoStars: hsl(303, 10%, 53%);
    --FondoMeta: hsl(300, 24%, 96%);
    --text: hsl(0, 0%, 100%);
}

body{
    font-family: "League Spartan", sans-serif;
    background-color: var(--FondoMeta);
}
.container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 10px;
}
/**Txt*/
h1{
    color: var(--Fondo1);
    font-size: 40px;
    font-weight: 700;
}
h2{
    color: var(--text);
    font-size: 20px;
    font-weight: 500; 
}
h3{
    color: var(--Verificado);
    font-size: 15px;
    font-weight: 400; 
}
h4{
    color: var(--Fondo1);
    font-size: 18px;
    font-weight: 700;
    margin: 20px;
}
.review h3, .review h2{
    margin: 0px;
}
p{
    color: var(--FondoStars);
    font-size: 16px;
}
.review p{
    color: var(--text);
    font-size: 18px;
    font-weight: 400;
}
/**Info*/
.info {
    text-align: center;
}


/**Stars*/
.card-stars {
    text-align: center;
    justify-items: center;
    display: block; 
    background-color: var(--Fondo2);
    border-radius: 10px;
    padding: 5px;
    margin: 10px;
}
.stars-background {
    width: 110px;  /* Ajusta según el ancho que necesites */
    height: 20px;  /* Ajusta según el alto que necesites */
    background-image: url('/images/icon-star.svg');
    background-repeat: space;
    background-size: 20px;  /* Ajusta según el tamaño que necesites */
    margin: 10px;
}

/**Review*/
.review {
   margin-top: 20px; 
}
.card-review {
    background-color: var(--Fondo1); 
    padding: 40px;
    margin: 10px;
    border-radius: 20px;
}
.person{
    display: flex;
}
.review img{
    width: 50px;
    height: 50px;
    border-radius: 50%; 
    margin-right: 10px;
}
.titles{
    margin-left: 10px;
}
@media (min-width: 750px) {
    body{
        margin-top: 70px;
    }
    .container{
        display: grid;
        grid-template-columns: repeat(7,1fr);
        grid-template-rows: repeat(2,1fr);
        grid-gap: 10px;
    }
    h1{
        font-size: 60px;
    }
    h2{
        font-size: 20px;
    }
    h3{
        font-size: 15px;
    }
    h4{
        font-size: 20px;
    }
    p{
        font-size: 25px;
    }
    .info {
        grid-column: span 2 / span 2;
        grid-column-start: 2;
    }
    .stars {
        grid-column: span 2 / span 2;
        grid-column-start: 5;
        grid-row-start: 1;
        align-self: center;
    }
    .stars1 {
        margin-left: 0px;
    }
    .stars2 {
        margin-left: 50px;
    }
    .stars3 {
        margin-left: 100px;
    }
    .card-stars {
        display: flex; 
        justify-content: center;
        align-items: center;
        width: 500px;
    }
    .review {
        grid-column: span 5 / span 5;
        grid-column-start: 2;
        grid-row-start: 2;
        display: flex;
        justify-content: space-between;
    }
    .card-review {
        height: 40%;
    }
    .review1{
        margin-top: 0px;
    }
    .review2{
        margin-top: 20px;
    }
    .review3{
        margin-top: 40px;
    }
}