@import url(https://fonts.googleapis.com/css?family=Open+Sans);
body{
    background: #131313;
    color:azure;
    font-family: 'Open Sans', sans-serif;

}

.search {
    width: 100%;
    position: relative
  }
  
  .searchTerm {
    float: left;
    width: 100%;
    border: 3px solid #00B4CC;
    padding: 5px;
    height: 36px;
    border-radius: 5px;
    outline: none;
    color: #9DBFAF;
  }
  
  .searchTerm:focus{
    color: #00B4CC;
  }
  
  .searchButton {
    position: absolute;  
    right: -35px;
    width: 40px;
    height: 36px;
    border: 1px solid #00B4CC;
    background: #00B4CC;
    text-align: center;
    color: #fff;
    border-radius: 0px 5px 5px 0px;
    cursor: pointer;
    font-size: 20px;
  }
  
  /*Resize the wrap to see the search bar change!*/
  .wrap{
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .atencion{
    position: -webkit-sticky;
    text-align: center;
    color:goldenrod;
    padding-top: 60px;
  }

  .buscando{
    position: -webkit-sticky;
    text-align: center;
    color:rgb(32, 218, 125);
    padding-top: 60px;
  }

  .titulo{
    width: 90%;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }

.pie{
  top: 95%;
  color: white;
  position: absolute;
  bottom: 0;
  left: 50%;           
  margin-top: -100px;
  margin-left: -160px;
}

a{
  color: #00B4CC
}