* {
  margin: 0;
  padding: 0;
}

body {
  background-image: url("./public/bg.JPG");
  background-attachment: fixed;
  background-size: cover;
  overflow: hidden;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100dvh;
  color: white;
}

h3 {
  margin-top: 40px;
  font-size: 3rem;
  line-height: 1.2;
  text-align: center;
}

h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  text-shadow: 2px 2px 8px rgba(71, 77, 117, 0.4);
  color: #ee4dc6;
  margin-top: 20px;
  text-align: center;
}

p {
  margin-top: 40px;
  font-size: 1.5rem;
  text-align: center;
}

img {
  object-fit: cover;
  min-width: 100px;
  max-width: 500px;
}

@media (max-width: 768px) {
  h3 {
    font-size: 1.8rem;
    margin-top: 20px;
  }

  h1 {
    font-size: 2.5rem;
    margin-top: 10px;
  }

  p {
    font-size: 1rem;
    margin-top: 20px;
  }

  img {
    width: 75%;
  }

  .center {
    padding: 40px;
  }
}
@media (max-width: 600px) {
  .center {
    padding: 40px;
  }
}
