

@import 'fonts.css';
@import 'reset.css';


/*
/*
/*
/* ------- - Mains - --------------- */


body {
  font-family: 'Crimson Pro', serif;

  color: rgba(51, 51, 51, 1);
  overflow: hidden;
}


p {
  font-size: 1.3em;
  font-weight: 300;
  margin-top: 80vh;
  text-align: center;
}

.logo-ok{
  font-family: 'Olympian';
  text-align: center;
  font-weight: normal;
  font-size: 9vw;
}

.logo-movil-ok{
  font-family: 'Olympian';
  text-align: center;
  /* font-weight: normal; */
  font-size: 45px;
  padding: 13vh 18vw;
  display: none;
}

.logo-movil-ok span{
  opacity: .3;

}

@media all and (max-width: 650px){

  .logo-ok{
    display: none;
  }
  
  .logo-movil-ok{
    display: block;
  }

}


.text-link:hover{
  color: rgba(51, 51, 51, .5);
  cursor: pointer;
  text-decoration: underline;
}



/*
/*
/*
/* ------- - logo cont & anim - --------------- */


.main_logo{

  position: absolute;

  left: 50%;
  top: 30%;

  animation-duration: 1.2s;
  animation-name: logo-tamb;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  
}

@keyframes logo-tamb {
  0% {
    transform: translateX(-50%) perspective(600px) rotateX(0deg) rotateY(-25deg);
  }

  100% {
    transform: translateX(-50%) perspective(600px) rotateX(0deg) rotateY(20deg);
  }
}



/*
/*
/*
/* ------- - botonera - --------------- */

.btonera{
  position: absolute;
  display: flex;

  top: 80vh;
  left: 50%;

  transform: translateX(-50%);
}

.btn{
  display: inline-block; 
  text-align: center;
  color: rgba(51, 51, 51, 1);
  font-size: .9rem;
  font-weight: 200;
  vertical-align: middle;

  /* border-radius: 4px; */
  width: 220px;
  height: 50%;

  padding: 13px 0;
  background-color: rgb(255, 255, 140);

  border-bottom: 4px solid rgb(51, 51, 51);
  border-top: 4px solid white;

  transition: all .2s ease;
}

/* .btn:first-of-type{
  margin-right: 17px;
} */

.btn:hover{
  cursor: pointer;

  border-top: 4px solid rgb(51, 51, 51);
  border-bottom: 4px solid white;
  

}