@import url('https://fonts.googleapis.com/css2?family=Mountains+of+Christmas:wght@400;700&display=swap');

html, body {
  margin: 0;
  padding: 0;
  background: #000;
  color:#black;

  font-family: Helvetica, Arial, sans-serif;
}

a{
  color:#f00;
  text-decoration: none;
  transition: all ease 1s;
}

a[href$=".pdf"]{color: orange;
}

a:hover{
  color:#c55;
  text-decoration: underline;
  transition: all ease 1s;
}

a:hover:after{
  content: "🎶";
}

h1{
  font-size: calc(3rem + 5vw);
}

#bloque {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(80% - 4rem);
    padding: 2rem;
    margin: auto;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1rem;
    box-shadow: 0 0 30px black;
    z-index: 9999;
}

.xmas{
  font-family: "Mountains of Christmas", serif;
  font-weight: 400;
  font-style: normal;
}

.ajuste{
  font-size: 120%;
}


/*
canvas {
  display: block;
}
*/