@font-face {
    font-family: bobaDate;
    src: url('fuentes/Boba Date.otf');
  }

body {    
    background-image: url('imagenes/fondo-rejillas.png');    
    background-size: 150px;
    font-family: bobaDate;
}

input {
  width: 90%;
  margin-bottom: 19px;
  padding: 10px;
}

button {
  background: #fe80dd;
  border-radius: 10px;
  padding: 10px;
  font-family: inherit;
  color: #221e12;
  border: solid 4px #7d68b6;
  box-shadow: rgb(0, 0, 0) 6px 3px 0px 1px;
  margin: 0px 10px;
  margin-top: 15px;
}

#botonesCompartir {
    text-align: center;
}

a {
  text-decoration: none;
  color: #715dbc;
}

#cabecera {
    width: 100%;
    text-align: center;
}

.logo {
    width: 1020px;
    max-width: 100%;
    padding-top: 20px;
    padding-bottom: 25px;
}

#intro {
    width: 1000px;
    margin: 0 auto;
    min-height: 800px;
}


#comic {
    width: 468px;
    height: 752px;
    background-image: url('imagenes/comic.png');
    background-size: cover;
    margin: 0 auto;
    float: left;
    margin-top: -10px;
}

#mano {
    width: 444px;
    height: 769px;
    background-image: url('imagenes/mano.png');
    background-size: cover;
    position: absolute;
    margin-top: 16px;
    margin-left: 33px;
    animation: float 4s ease-in-out infinite;
}

#fechas {
    width: 500px;
    float: right;
    margin-top: -53px;
}

#fechas img {
    width: 489px;
}

.cuerpo {
    background-color: #ffe187;
    width: 920px;
    margin: 0 auto;
    padding: 40px;
  	border-radius: 6px;
 }

h3 {
    font-size: xx-large;
    color: #ff81de;
    text-shadow: -1px 3px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000, 1px 1px 0 #000;
    font-stretch: unset;
  }

p {
    font-family: sans-serif;
  }

#creditos {
  margin: 0 auto;
  text-align: center;
  font-size: 12px;
  padding-top: 31px;
}



/**
#fondo {
    position: relative;
  font-size: 20px;
  text-align: justify;
  background-color: orange;
  height: 220px;
  top: 85px;
}

#fondo:before{
    content: '';
    position: absolute;
    top: -50;
    left: 0px;
    clip-path: polygon(0px 100%, 100% 0, 100% 100%);
    width: 100%;
    height: 50px;
    margin: 0px;
    background-color: orange;
  }
    */

@keyframes float {
	0% {
        -webkit-transform: translateX(0);
        transform: translateX(0) translateY(0);
    }
    30% {
        -webkit-transform: translateX(calc(100cqw - 100%));
        transform: translateX(20px) translateY(20px);
    }
    60% {
        -webkit-transform: translateX(calc(100cqw - 100%));
        transform: translateX(50px) translateY(-10px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0) translateY(0);
    }
}

@media (max-width: 1020px) {
    #intro {
        width: initial;
    }
    #comic {
        float: none;
        width: 293px;
        height: 471px;
        margin-left: 9px;
      	margin: 0 auto;
    }
    #mano {
        width: 294px;
        height: 522px;
    }
    #fechas {
        float: none;
        margin-top: 0px;
        margin: 0 auto;
        position: relative;
        z-index: 0;
        width: 100%;
    }
    #fechas img {
        width: 100%;
    }
    .cuerpo {
        margin-top: 20px;
        padding: 25px;
        width: initial;
        margin: 0 auto;
    }
  }