@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins';
  color: #CCCCCC;
}

.display, header, .main, .sub_main, .content_button {
  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;
}

body {
  min-height: 100vh;
  background-color: #102431;
}

header {
  min-height: 80px;
  background-color: #102431;
}

header a {
  border-radius: 4px;
  font-weight: 400;
  text-decoration: none;
  margin: 0 15px;
  padding: 5px 10px;
}

header a:hover {
  background-color: #CCCCCC;
  color: #102431;
}

.main {
  min-height: calc(100vh - 80px);
}

.sub_main {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.texto_resaltado {
  color: #3DC8FF;
}

.button_conoceme {
  border-radius: 5px;
  text-align: center;
  margin: 0 5px;
  margin-top: 20px;
  text-decoration: none;
  color: #3DC8FF;
  border: 1px solid #3DC8FF;
  padding: 5px 10px;
  width: 130px;
}

.button_conoceme:hover {
  color: #102431;
  background-color: #3DC8FF;
}

img {
  width: 300px;
  position: relative;
  -webkit-animation: img_float 2.2s linear infinite;
          animation: img_float 2.2s linear infinite;
}

@-webkit-keyframes img_float {
  0% {
    top: -20px;
  }
  50% {
    top: 0px;
  }
  100% {
    top: -20px;
  }
}

@keyframes img_float {
  0% {
    top: -20px;
  }
  50% {
    top: 0px;
  }
  100% {
    top: -20px;
  }
}

.puntero {
  -webkit-animation: puntero 1s linear infinite;
          animation: puntero 1s linear infinite;
}

@-webkit-keyframes puntero {
  0% {
    opacity: hidden;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: hidden;
  }
}

@keyframes puntero {
  0% {
    opacity: hidden;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: hidden;
  }
}

p {
  font-size: 2em;
  letter-spacing: .4px;
  font-weight: 600;
}

@media screen and (max-width: 600px) {
  .image {
    margin: 0;
    margin-top: 80px;
  }
  .image img {
    width: 200px;
  }
}
/*# sourceMappingURL=styles.css.map */