* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: auto;
  padding-top: 80px;
  background-image: url(Assets/white-background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

main {
  position: relative;
  width: 100%;
  height: 100%;
}

.footer {
  padding: 8px;
  text-align: center;
  margin: auto;
  clear: both;
  font-size: 12px;
  color: black;
}

/* Typography Reset and Base */
body {
  font-family: "Georgia", serif;
  margin: 0;
  padding: 0;
  color: #2c2c2c;
  line-height: 1.6;
}

/* Heading */
h1 {
  text-align: center;
  font-size: 2rem;
  margin: 2rem 0 1rem;
  color: #333333;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Contact Info Container */
p {
  max-width: 480px;
  margin: 2rem auto;
  background-color: #ffffff;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border: 1px solid #e0e0e0;
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

p:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

/* Email link styling */
p a {
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
}

p a:hover {
  text-decoration: underline;
}

/* Responsive spacing */
@media (max-width: 600px) {
  h1 {
    font-size: 1.5rem;
  }

  p {
    font-size: 1rem;
    padding: 1.2rem;
  }
}
