* {
  margin: 0;
  padding: 0;
}

body {
  height: 100vh;
  background-image: url(IMG/chaoscat.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

p {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  color: white;
  font-size: 30px;
  margin-bottom: 10px;
}
h2 {
  color: blueviolet;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-weight: 500;
}

@media (max-width: 650px) {
  p {
    font-size: 25px;
  }
  h2 {
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  p {
    font-size: 20px;
  }
  h2 {
    font-size: 15px;
  }
}
@media (max-width: 320px) {
  p {
    font-size: 16px;
  }
  h2 {
    font-size: 12px;
  }
}
