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

body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #c02fac;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center;    /* Center vertically */
  height: 100vh;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative; /* Allows positioning for the email link */
  height: 90vh;
  width: 90vw;
}

.logo {
  margin: auto 0; /* Center the logo vertically */
}

.logo img {
  max-width: 175px; /* 30% reduction from 250px */
  width: 100%;
  height: auto;
}

.contact {
  position: absolute; /* Fix the email at the bottom */
  bottom: 20px; /* Distance from the bottom edge */
  font-size: 1rem;
}

.contact a {
  text-decoration: none;
  color: #c02fac;
  font-size: 1rem;
}

.contact a:hover {
  text-decoration: underline;
}
