* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#meme {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

.content {
  width: 50vw;
  height: 30vh;
  z-index: 100;
  color: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-family: "Bebas Neue", cursive;
  background-color: black;
}

.content .info {
  text-align: center;
  font-size: 4em;
}

.content .deadline {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [4];
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: center;
  padding-top: 1vh;
  font-size: 4em;
    background-color: black;

}

.if {
  z-index: 100;
  color: #fff;
  position: absolute;
  bottom: 12em;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  font-family: "Bebas Neue", cursive;
  letter-spacing: 2px;
}

@media only screen and (max-width: 600px) {
  .info-h1 {
    font-size: 1em;
  }
  .info p {
    font-size: 2rem;
    padding: 30px 0;
  }
  .if {
    font-size: 1em;
    text-align: center;
    bottom: 1.5em;
  }
  .content {
    width: 80vw;
    top: 30%;
  }
}
/*# sourceMappingURL=index.css.map */

