body {
  margin: 0;
  padding: 0;
  background-color: #000; /* black */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  font-family: Inter, sans-serif;
  text-align: center;
  color: #fff;
  position: relative;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
}

.container img {
  max-width: 90%; 
  height: auto;
}

.container h1 {
  margin-top: 16px;
  font-size: 20px; 
  font-weight: bold;
  color: #fafafa;
}

.container p {
  margin-top: 12px;
  font-size: 14px;
  color: #d4d4d8;
}

.contact {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: #d4d4d8;
}

.contact a {
  color: #d4d4d8;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .container img {
    max-width: 300px;
  }

  .container h1 {
    font-size: 1.5rem; 
  }

  .container p {
    font-size: 1rem; 
  }

  .contact {
    font-size: 0.9rem;
  }
}
