:root {
  --secundario: #ffffff;
  --Principal: "Outfit";
}

html { 
  font-size: 62.5%;
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
body {
  font-size: 1.6rem;
  line-height: 1.8;
  background-color: hsl(212, 45%, 89%);
}

img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 1000rem;
}

.main-background {
  background-color: var(--secundario);
  width: 32.1rem;
  height: 54rem;
  margin: 20rem auto;
  border-radius: 3rem;
}

.main-box__text {
  margin-top: 5rem;
  font-size: 2.5rem;
  padding: 1rem;
  font-weight: bold;
  text-align: center;
  margin: 0 auto;
  font-family: "Outfit";
  line-height: 1;
}

.main-box__teext {
  font-size: 1.8rem;
  color: gray;
  text-align: center;
  margin: 1rem 0;
  line-height: 2.5rem;
}
.main-box__image {
  margin: 1.6rem;
  padding-top: 1.6rem;
  width: 28.6rem;
  height: 32.1rem;
  border-radius: 5rem;
}

/* Media queries - Mobile design */
@media (max-width: 375px) {
  .main-background {
    display: flex;
    width: 32.1rem;
    height: 54rem;
    margin: 20rem auto;
    border-radius: 3rem;
  }
  .main-box__text {
    margin-top: 2rem;
    font-size: 2.5rem;
    padding: 1rem;
    font-weight: bold;
    text-align: center;
    margin: 0 auto;
    font-family: "Outfit";
    line-height: 1;
  }

  .main-box__teext {
    font-size: 2rem;
    color: gray;
    text-align: center;
    margin: 2rem 1rem;
    line-height: 2rem;
  }
}
