@font-face {
  font-family: myDigital;
  src: url(fonts/digital.woff2);
}

@font-face {
  font-family: myArcade;
  src: url(fonts/arcade.woff2);
}

@font-face {
  font-family: myMinecraft;
  src: url(fonts/minecraft.woff2);
}

@font-face {
  font-family: myLcd;
  src: url(fonts/lcd.woff2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body {
  background: linear-gradient(45deg, #f00, #f80, #ff0, #8f0, #0f0, #0f8, #0ff, #08f, #00f, #80f, #f0f);
}

header {
  background-color: #0006;
  color: #ddd;
  height: 20vh;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 5px 5px #0006;

}

header > h1 {
  width: 100%;
  text-align: center;
  font-family: myLcd, sans-serif;
  font-size: 3rem;
}

main {
  height: 75vh;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  border-top: solid 2px #000;
  border-bottom: solid 2px #000;
  background-color: #0003;
  box-shadow: 0px 5px 5px #0006;

}

label {
  background-color: #0003;
  color: #fff;
  font-weight: bold;
  padding: 10px;
  font-size: 1.2rem;
  border-left: solid 1px #fff;
  border-top: solid 1px #fff;
  border-right: solid 0px #fff;
  border-bottom: solid 0px #fff;
  box-shadow: 5px 5px 5px #0006;
  border-radius: 10px;
}

input {
  width: 75vw;
  font-size: 1.2rem;
  margin: 10px 0;
  padding: 5px 5px;
  border-radius: 5px;
  border-left: solid 1px #fff;
  border-top: solid 1px #fff;
  border-right: solid 0px #fff;
  border-bottom: solid 0px #fff;
  box-shadow: 3px 3px 3px #0006;
  background-color: #fff3;
  color: #000;
  font-family: myLcd, sans-serif;
  font-size: 1.75rem;
  font-weight: bold;
}

footer {
  height: 5vh;
  background-color: #0006;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (orientation: portrait) {
  
  input {
    width: 75vw;
    font-size: 1.5rem;
  }

  main {
    flex-direction: column;
    align-items: center;
    padding-top: 0;
  }
}