* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Comic Sans MS", cursive;
  flex-direction: column;
}
a {
  color: black;
}

.img {
  max-width: 607px;
  width: 100%;
  margin-bottom: 10px;
}

.img img {
  width: 100%;
}

.text {
  max-width: max-content;
  width: 100%;
  margin-bottom: 50px;
}

p {
  font-size: 2rem;
  text-align: center;
}

@media only screen and (max-width: 1200px) {
  p {
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 800px) {
  p {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 600px) {
  p {
    font-size: 0.9rem;
  }
}

@media only screen and (max-width: 400px) {
  p {
    font-size: 0.8rem;
    max-width: 100%;
  }

  .text {
    max-width: 100%;
  }
}
