* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", sans-serif;
  min-height: 100vh;
}

.header {
  text-align: center;
  padding: 20px 10px;
}

.subtitulo {
    text-align: center;
    padding: 20px 10px;
    background-color: #37bbed;
    color: white;
}

.header img {
  height: 30px;
}

.main {
  background-image: url(../imagenes/Tecnopolis_360.png);
  background-position: center;
  background-size: cover;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
}

.social-media {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.social-media a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #37bbed;
  border-radius: 100%;
  opacity: 0.85;
  text-decoration: none;
  color: white;
  font-size: 22px;
  margin-bottom: 12px;
}

.social-media a:hover {
  background-color: #2d96bd;
}

.buttons {
  margin: 80px 0 40px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.buttons a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  width: 200px;
  height: 80px;
  background-color: white;
  opacity: 0.85;
  text-decoration: none;
  color: #37bbed;
  font-size: 22px;
  margin-bottom: 12px;
}

.buttons a:hover {
  background-color: #2d96bd;
  color: white;
}

.buttons a:hover label {
  border-color: white;
}

.buttons a label {
  cursor: pointer;
  margin-left: 16px;
  padding: 12px 16px;
  border-left: 3px solid #37bbed;
  font-weight: 600;
}

.footer {
  padding: 16px 20px;
  max-width: 840px;
  margin: 0 auto;
}

.footer img {
  width: 130px;
}

@media (min-width: 560px) {
  .header {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .header img {
    height: 60px;
  }
  .main {
    padding: 40px;
  }
  .social-media {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .buttons a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-bottom: 0;
    margin-left: 20px;
  }
  .footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .footer img {
    width: 230px;
  }
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.d-flex.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.d-flex.column-direction {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
/*# sourceMappingURL=estilos.css.map */