@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Silkscreen&display=swap');

*{
  box-sizing: border-box;
  font-size: 1em;
}

html, body{
  margin: 0;
  padding: 0;
  font-family: 'Silkscreen', cursive;
  font-size: 12px;
}

canvas{
  display: block;
}

h2{
  font-size: 1.5rem;

}

p{
  
}

div{
  
}

a{
 
}

span{
  
}

#play{
  position: absolute;
  left: 0px;
  top:0px;
  background-color: black;
  text-align: center;
  width: 100%;
  height: 100%;
  color:aliceblue;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 4%;  
}

#play div{
  margin-bottom: 20px;
}

#play span{
  padding: 12px 14px;
  border-radius: 50%;
  transition: 1s;
  cursor: pointer;
  font-size: 2rem;
  letter-spacing: 20px;
}

@media only screen and (max-width: 700px) {
  #play span{
    font-size: 1.5rem !important;
    letter-spacing: 4px;
  }

  .musician{
    font-size: 1rem !important;
  }
}

#play span:hover{
  color:rgb(234, 105, 46)
}

.popup{
  position: fixed;
  left:10vw;
  top:10vh;
  z-index: 20;
  width:80vw;
  height: 80vh;
  background-color: aliceblue;
  padding: 3% 2%;
  box-sizing: border-box;
  overflow:scroll;
  border:2px solid rgb(74, 109, 118);
}

.pX{
  position: absolute;
  right: 2%;
  top:1%;
  cursor: pointer;
  margin: 0px;
  padding: 0px;
  background-color: black;
  color: aliceblue;
  padding: 0.5% 1%;
}

.pX:hover{
  background-color: rgb(228, 61, 61);
}

.musician{
  position: fixed;
  z-index: 10;
  left:0px;
  top:0px;
  cursor: pointer;
  font-size: 1.2rem;
  animation: textoAnimation 0.4s alternate infinite;
}

.musician:hover{
  background-color: red;
}

@keyframes textoAnimation {
  0%{
    color:red;
  }33%{
    color:green;
  }100%{
    color:blue;
  }
}

/* Composer */

.composer{

}

.info-fila{
  display: flex;
  padding: 2% 0%;
}

.info-fila img{
  width:30%;
  height: auto;
}

.info-interior{
  padding: 0% 1%;
}

#contacto{
  position: fixed;
  width:100%;
  text-align: center;
  bottom: 20px;
  font-size: 2em;
}