body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f0f0f0; /* Off-white color */
  font-family: 'Roboto', sans-serif;
}

#content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#logo {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px; /* Add margin to separate logo and email */
}

#email {
  opacity: 0;
  text-align: center;
  margin-top: 10px; /* Add space between logo and email */
  transition: opacity 1s;
}

#content.show-email #email {
  opacity: 1;
}
