body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  padding: 0 20px;
}

.container {
  width: 100%;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  width: 100%;
  height: 100%;
  gap: 48px;
}

.offer {
  font-size: 42px;
  font-weight: 500;
  color: #000;
  text-align: center;
  margin: 0;
}
.price {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin: 0;
}

.button {
  width: 200px;
  height: 50px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  margin: 0;
}

button a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.button-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.trial {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-align: center;
  margin: 0;
}

@media (max-width: 576px) {
  .content {
    gap: 24px;
  }
  .offer {
    font-size: 32px;
  }
  .price {
    font-size: 24px;
  }
  .button {
    width: 100%;
  }
  .trial {
    font-size: 12px;
  }
}
