@import url(./fonts.css);
@import url(./keyframes.css);

html, body {
  overflow: hidden;
  padding: 0;
  margin: 0;
  position: relative;
}
.container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column-reverse;
  align-items: start;
  background-color: #000000;
  z-index: 2;
}
.clean-btn {
  z-index: 1;
  font-family: sans-serif;
  font-size: 15px;
  color: white;
  text-shadow: 0 0 10px #000000;
  user-select: none;
  margin: 0 0 15px 25px;
  padding: 10px 20px;
  cursor: pointer;
  text-decoration: underline;
  opacity: .5;
}
canvas {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

.name {
  text-shadow: 0 0 10px #000000;
  user-select: none;
  font-size: 15px;
  opacity: .7;
  margin: 0 0 15px 25px;
  padding: 10px 5px;
  top: 0%;
  position: fixed;
  color: white;
  text-align: center;
  user-select: none;
  pointer-events: none;
  z-index: 2;
}

.greeting {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #ee4b4b;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.m {
  position: relative;
  color: white;
}

.greeting .message-simple {
  font-family: 'DancingScript', sans-serif;
  font-size: 80px;
  text-align: center;
  color: white;
  text-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.error {
  font-family: 'IndieFlower';
  font-size: 24px;
  margin: 0px auto;
  display: block;
  text-align: center;
  margin-top: 35vh;
}

@media all and (max-width: 1200px) {
  /* Removed unused animations */
}

@media all and (min-width: 640px) {
  .name {
      font-size: 20px
  }
}