/*
 * Universal
 */
@font-face {
  font-family: "ZombieApocalypse";
  src: url("../assets/ArmyBuster-eZe9x.ttf") format("truetype");
}

@font-face {
  font-family: Walkway;
  src: url("../fonts/Walkway.ttf");
}

html,
body {
  height: 100%;
  margin: 0;
  background-color: black;
  color: white;
  text-align: center;
  font-size: 11pt;
}

* {
  margin: 0;
  padding: 0;
}

/*
 * Components
 */
#aoe {
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-size: 16px;
  font-family: "Walkway";
  font-weight: bold;
}
#aoe p i {
  display: inline-block;
  border-radius: 50%;
  width: 2px;
  height: 2px;
  margin-bottom: 3px;
  margin-left: 2px;
  margin-right: 3px;
  background-color: #fff;
}
#aoe p .right {
  margin-left: 1px;
}

#social {
  position: absolute;
  right: 14px;
  bottom: 10px;
  font-size: 22px;
}
#social i {
  margin-left: 5px;
}

#floor {
  position: absolute;
  top: 28%;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(rgb(255, 0, 0), black);
}
.floor-side {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 28%;
  bottom: 0;
  left: 0;
}

#door {
  width: 80px;
  height: 140px;
  margin: 0;
  position: absolute;
  bottom: 72%;
  left: 50%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#light {
  width: 80px;
  height: 140px;
  background-color: red;
  position: absolute;
}

#zombie {
  position: absolute;
  bottom: 0;
  background-image: url("../assets/zombie_crop.png");
  background-position: center;
  width: 80px;
  height: 120px;
  background-size: contain;
  background-repeat: no-repeat;
}

#zombie-shadow {
  position: absolute;
  bottom: 0;

  background-image: url("../assets/zombie_crop.png");
  background-position: center;
  width: 80px;
  height: 120px;
  background-size: contain;
  background-repeat: no-repeat;

  transform-origin: bottom center;

  filter: blur(1px);
}

#info {
  position: absolute;
  left: 50%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 50%;
  width: 95%;
}

#info p {
  margin: 0 20px 20px 20px;
  text-align: left;
}

input {
  width: 65%;
  background-color: transparent;
  border: solid 1px white;

  height: 24px;
  padding-left: 5px;
  border-radius: 0;
}

input:focus {
  outline: 0;
}

button {
  width: 30%;
  height: 26px;
  color: black;
  border-color: white;
  border-style: solid;
  txext-transform: uppercase;
}

.logo {
  font-size: 32px;
  font-family: "ZombieApocalypse";
  margin: 0 0 5px 0;
}

.store-link {
  height: 32px;
  margin: 0 5px 0 5px;
}

/* Large phone ----------- */
@media only screen and (min-width: 375px) {
  .logo {
    font-size: 36px;
  }
}

/* Tablet ----------- */
@media only screen and (min-width: 768px) {
  #aoe {
    font-size: 22px;
  }
  #aoe p i {
    width: 3px;
    height: 3px;
  }

  #social {
    font-size: 32px;
  }

  .logo {
    font-size: 70px;
    margin: 0 0 10px 0;
  }

  #info {
    top: 55%;
    width: 80%;
  }

  .store-link {
    height: 48px;
    margin: 0 10px 0 10px;
  }

  #info p {
    margin-bottom: 30px;
  }
}

/* Small screens / large tablets ----------- */
@media only screen and (min-width: 1024px) {
  #floor {
    top: 45%;
  }

  .floor-side {
    top: 45%;
  }

  #door {
    width: 200px;
    height: 350px;
    bottom: 55%;
  }

  #light {
    width: 200px;
    height: 350px;
  }

  #zombie {
    width: 200px;
    height: 300px;
  }

  #zombie-shadow {
    width: 200px;
    height: 300px;
  }

  #info {
    top: 70%;
    width: 620px;
  }
}

/* Large screens ----------- */
@media only screen and (min-width: 1201) {
}
