body {
  margin: 0px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("./img/skull.jpg");
}

.canvas-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

canvas {
  box-sizing: border-box;
  width: 900px;
  height: 480px;
  background-color: black;
  border: 1.5px solid #ffffff;
  border-radius: 10px;
  display: block;
}

h1 {
  font-size: 64px;
  color: #4f8deb;
  margin: 0px 0px 24px 0px;
  text-shadow: 2px 2px 3px black;
  word-spacing: 4px;
  letter-spacing: 4px;
  font-family: "Uncial Antiqua", serif;
  font-weight: 400;
  font-style: normal;
}

h2 {
  margin: 0px;
  font-family: "Uncial Antiqua", serif;
  font-weight: 400;
  font-style: normal;
  text-shadow: 2px 2px 3px black;
}

h3 {
  margin: 0px;
  text-shadow: 2px 2px 3px black;
}

a {
  text-decoration: none;
  color: #4f8deb;
}

p {
  display: flex;
  align-items: center;
  margin: 0px;
  text-shadow: 2px 2px 3px black;
}

strong {
  color: #4f8deb;
}

.hidden {
  display: none !important;
}

.head-images {
  width: 40px;
  height: 40px;
}

@media only screen and (max-width: 1367px) {
  canvas {
    width: 100%;
    height: 100vh;
    border: none;
    border-radius: 0px;
  }

  h1 {
    font-size: 0px;
    margin: 0px;
  }
}

@media screen and (orientation: landscape) {
  .canvas {
    width: 100%;
  }
}
