body {
  background-color: #8A6F44;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  height: 100vh;
  padding: 1rem;
}

.logo {
  margin-top: 6.25rem; /* Add space from the top */
  margin-bottom: 2rem;
  display: flex;
  justify-content: center; /* Center horizontally */
}

.logo img {
  height: 50px;
}

.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.heading {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.subheading {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.follow-text {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #eee;
}

.instagram-btn {
  width: 60px;
  height: 60px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: background 0.3s;
}

.instagram-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.instagram-btn img {
  width: 24px;
  height: 24px;
}

.contact {
  font-size: 0.9rem;
  color: #eee;
  position: absolute;
  bottom: 1rem;
  text-align: center;
}

@media (max-width: 480px) {
  .heading {
    font-size: 1.5rem;
  }

  .subheading {
    font-size: 1rem;
  }
}
