html,
body {
  height: 100%;
  font-family: "Red Hat Display", sans-serif;
}
.container {
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
  background-image: url(pattern-background-desktop.svg);
  background-repeat: no-repeat;
  background-color: hsl(225, 100%, 94%);
  background-size: 100%;
}
.card {
  width: 500px;
  height: 800px;
  background-color: #fff;
  border-radius: 20px;
}

.card-image {
  width: 500px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.container2 {
  display: flex;
}
.card-titulo-grande {
  text-align: center;
  font-size: 20px;
  color: black;
  font-weight: 900;
}
.card-titulo-pequeno {
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  color: rgb(135, 130, 130);
  margin-left: 20px;
  margin-right: 20px;
}
.sub-card {
  display: flex;
  width: 420px;
  height: 130px;
  background-color: hsl(225, 100%, 98%);
  border-radius: 10px;
  margin: auto;

  align-items: center;
}
.sub-card-image {
  width: 80px;
  padding: 25px;
}
.sc-titulo-grande {
  text-align: center;
  font-size: 15px;
  color: black;
  font-weight: 700;
}

.tamanho {
  width: 10%;
}

.change {
  margin-left: 40%;
  font-weight: 700;
  color: hsl(231deg 72% 58%);
  cursor: pointer;
}

.outra-cor {
  color: hsl(252, 3%, 61%);
}
.button {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 420px;
  height: 50px;
  background-color: hsl(231deg 72% 58%);
  margin: 40px;
  border-style: none;
  border-radius: 10px;
  box-shadow: 0 12px 16px 0 hsl(231deg 72% 58% / 28%),
    0 17px 50px 0 hsl(231deg 72% 58% / 14%);
}
.button:active {
  transition: 1s;
  background-color: rgb(126, 103, 251);
}
.text-button {
  color: #fff;
  font-size: 20px;
}
.cancel-order {
  display: flex;
  justify-content: center;
  color: hsl(250, 2%, 51%);
  font-size: 17px;
  cursor: pointer;
}

@media (max-width: 600px) {
  html,
  body {
    height: 100%;
    width: 100%;
  }
  body {
    position: absolute;
  }
  .card {
    width: 350px;
    height: 650px;
  }
  .card-image {
    width: 350px;
  }
  .card-titulo-grande {
    font-size: 15px;
  }
  .card-titulo-pequeno {
    margin-left: 40px;
    margin-right: 40px;
    font-size: 18px;
  }
  .sub-card {
    width: 300px;
    height: 100px;
  }
  .sub-card-image {
    width: 60px;
    padding: 25px;
  }
  .change {
    margin-left: 30%;
  }
  .button {
    width: 300px;
    margin-left: 25px;
  }
}
