/*GLOBAL*/
* {
  margin:0;
  padding:0;
  box-sizing: border-box;
}
body {
  background-color: #ffeb3b;
  color: #333;
  font-family: 'Montserrat', sans-serif;
}

/*HEADER*/
header {
  background-color: #333;
  color: #ffeb3b;
}
header .wrapper {
  max-width:1140px;
  margin:0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px;
}
header .wrapper .col:last-child {
  margin-left: 20px;
}
header a {
  color: #ffeb3b;
  margin-right: 5px;
}
header p {
  padding-top: 10px;
}

/*SECTION, CONTAINERS*/
main {
  padding: 20px;
}
section {
  padding: 20px 0;
}
.wrapper {
  padding: 0 20px;
  max-width:1140px;
  margin:0 auto;
}
footer {
 padding:50px 0;
}

/*GLOBAL*/
img {
  border-radius:999px;
  animation-name: opacidad;
  animation-duration: 4s;
}
@keyframes opacidad {
from {opacity: 0;}
to {opacity: 1;}
}
h1, h2, h3 {
  font-weight: 800;
}
ul {
  list-style: none;
  margin-bottom: 40px;
}
ol {
margin-bottom: 40px;
}

.button {
  background-color: #333;
  color: #ffeb3b;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border: none;
  font-size: 1.1em;
}
.button:hover {
  opacity: 0.8;
}


/*MEDIA QUERIES*/
@media (max-width:800px) {
  header .wrapper {
    flex-direction: column;
    text-align: center;
  }
  h1 {
    font-size: 2.4em;
    margin-top: 20px;
  }
  h2 {
    font-size: 1.4em;
  }
  h3 {
    font-size: 1.4em;
  }
}

@media (min-width:801px) {
  h1 {
    font-size: 3em;
  }
  h2 {
    font-size: 2.4em;
  }
  h3 {
    font-size: 1.4em;
  }
  /*ANIMACIÓN TIPEO*/
  .tipeo {
    width: 13ch;
    animation: typing 2s steps(14), blink .5s step-end infinite alternate;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid;
  }

  @keyframes typing {
    from {
      width: 0
    }
  }

  @keyframes blink {
    50% {
      border-color: transparent
    }
  }
}
