* {
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  font-smooth: never;
  -webkit-font-smoothing: none;
}

body {
  background-image: url(imgs/warningBG.gif);
  display: flex;
  justify-content: center;
  overflow-x: hidden;
  margin: 0;
}

#content {
  background-image: url(gifs/stars2.gif);
  width: 80%;
  max-width: 900px;
  height: 75vh;
  margin-top: 10%;
  position: relative;
  text-align: center;
  padding: 10px;
}

#aCont {
  display: flex;
  justify-content: center;
}

#alarm {
  width: 150px;
  margin-top: 5%;
}

#sign {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}

.signGif {
  height: 10%;
  width: 10%;
  min-width: 80px;
}

#content h1 {
  font-size: 80px;
  animation: rainbow 2s linear infinite;
  margin: 20px 0;
}

#content p {
  max-width: 90%;
  margin: 0 auto;
  color: white;
  font-size: 20px;
}

@keyframes rainbow {
  0%   { color: red; }
  16%  { color: orange; }
  33%  { color: yellow; }
  50%  { color: green; }
  66%  { color: blue; }
  83%  { color: purple; }
  100% { color: red; }
}

@media (max-width: 768px) {
  #content {
    width: 95%;
    height: auto;
    margin-top: 20%;
    padding-bottom: 40px;
  }

  #content h1 {
    font-size: 50px;
  }

  #content p {
    font-size: 16px;
  }

  .signGif {
    width: 25%;
  }

  #alarm {
    width: 100px;
  }
}

@media (max-width: 480px) {
  #content h1 {
    font-size: 36px;
  }

  #content p {
    font-size: 14px;
  }

  .signGif {
    width: 30%;
  }

  #alarm {
    width: 80px;
  }
}
