:root {
  --primary: #fff309;
  --bg: #000000;
  --font: #ffffff;
  --bg-dark-mode: #ffffff;
  --font-dark-mode: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: var(--bg);
  color: var(--primary);
}

h1 {
  font-size: 8rem;
  text-align: center;
  padding: 2rem;
}

body a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background-color: #fff309;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
}

.movie,
.comic,
.volunteer {
  display: flex;
  align-items: center;
  justify-content: center;
}

.movie,
.comic,
.volunteer {
  margin-top: 20px;
}

body a p {
  margin: 0.5rem;
  color: #000000;
  font-weight: bold;
}

body a img {
  width: 5rem;
}

footer {
  color: #fff309;
  position: absolute;
  top: 45rem;
  bottom: 0;
  left: 0;
  right: 0;
  height: 7rem;
  font-weight: bold;
  font-size: 1.5rem;
  z-index: -999;
}

footer .copyright,
footer .allrights {
  justify-content: center;
  align-items: center;
  display: flex;
}

footer .allrights {
  margin-top: 0.8rem;
}

/* Media Queries */

/* Tablet */
@media (max-width: 1200px) {
  html {
    font-size: 85%;
  }
}

@media (max-width: 992px) {
  footer {
    color: #fff309;
    position: absolute;
    top: 50rem;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10rem;
    font-weight: bold;
    font-size: 1.8rem;
    z-index: -999;
  }

  footer .copyright,
  footer .allrights {
    justify-content: center;
    align-items: center;
    display: flex;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 70%;
  }

  .movie p,
  .comic p,
  .volunteer p {
    font-size: 90%;
  }

  footer {
    color: #fff309;
    position: absolute;
    top: 65rem;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    font-weight: bold;
    font-size: 1.8rem;
    z-index: -999;
  }

  footer .copyright,
  footer .allrights {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  footer .copyright {
    margin-top: -15rem;
  }

  footer .allrights {
    padding-bottom: 8rem;
  }
}

/* Smartphone */
@media (max-width: 450px) {
  html {
    font-size: 60%;
  }

  .movie p,
  .comic p {
    font-size: 80%;
  }

  footer {
    color: #fff309;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0rem;
    font-weight: bold;
    font-size: 1.7rem;
    z-index: -999;
  }

  footer .copyright,
  footer .allrights {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  footer .copyright {
    margin-top: -5rem;
  }
}
