html, body {
    font-size: 14px;
    height: 100%;
    background-color: hsl(30, 38%, 92%);
}

h1 {
    font-family: "Fraunces", serif;
    font-weight: 700;
    color: hsl(212, 21%, 14%);
}

p {
    color: hsl(228, 12%, 48%);
}

.category {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 500;
}


.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: auto;
    background-color: hsl(0, 0%, 100%);
    border-radius: 20px;
    width: 600px;
    max-width: 100%;
}

.card img {
    width: 50%;
    height: auto;
    object-fit: cover;
    border-radius: 10px 0 0 10px;   
}

.card-informations {
    display: flex;
    flex-direction: column;
    padding: 32px;
}

.card-informations p {
    font-family: "Montserrat", sans-serif;
}

.card-informations h1 {
    font-size: 28px;
    line-height: 1.2;
}

.card-informations .description {
    line-height: 1.5;
}


.value {
    display: flex;
    align-items: center;
    gap: 20px;
}

.value .label {
    font-size: 28px;
    font-weight: bold;
    color: hsl(158, 36%, 37%);
}

.value p {
    text-decoration: line-through;
}


button {
    font-family: "Montserrat", sans-serif;
    background-color: hsl(158, 36%, 37%);
    width: 100%;
    height: 50px;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: hsl(158, 36%, 27%);
}

@media (max-width: 375px) {
    .card {
      flex-direction: column;
      width: 90%;
    }
  
    .card img {
      width: 100%;
      border-radius: 10px 10px 0 0;
    }
  }