.header-title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 150px;
  padding: 30px 20px;
  text-align: center;
  width: 100%;
}

.header-title__title {
  margin: 0;
  text-transform: uppercase;
}

.header-title__subtitle {
  margin: 10px 0;
  font-weight: 400;
}

.articles {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 600px) {
  .articles {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 0 30px;
    max-width: 1200px;
  }
}

.articles__article {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  max-width: 350px;
  min-height: 300px;
  padding: 15px;
}

.articles__article__title {
  margin: 5px 0;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.articles__article__form {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.articles__article__form .label {
  margin: 5px;
  text-align: center;
}

.articles__article__form .input {
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 20px;
  color: white;
  height: 30px;
  margin-bottom: 10px;
  outline: none;
  text-align: center;
  width: 100%;
}

.articles__article__form .input:hover {
  border: 2px solid white;
}

.articles__article__form__title-buttons {
  font-size: 16px;
  font-weight: 400;
}

.articles__article__form__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.articles__article__form__buttons .button {
  background-color: rgba(255, 255, 255, 0.3);
  border: 2px solid transparent;
  border-radius: 30px;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 30px;
  margin: 0 5px;
  overflow: hidden;
}

.articles__article__form__buttons .button:hover {
  border: 2px solid white;
}

.articles__article__answer {
  border-bottom: 2px solid white;
  height: 35px;
  margin: 15px 0;
  text-align: center;
  width: 90%;
}

.cuadrado {
  background-color: #2ed573;
  border: 4px solid #7bed9f;
}

.triangulo {
  background-color: #ffa502;
  border: 4px solid #eccc68;
}

.circulo {
  background-color: #1e90ff;
  border: 4px solid #70a1ff;
}

.rectangulo {
  background-color: #00d8d6;
  border: 4px solid #34e7e4;
}

.rombo {
  background-color: #82589f;
  border: 4px solid #d6a2e8;
}
/*# sourceMappingURL=figuras.css.map */