* {
  box-sizing: border-box;
}

html {
  user-select: none;
  overflow: hidden;
}

html body {
background: rgb(79,78,96);
background: -moz-linear-gradient(90deg, rgba(79,78,96,1) 0%, rgba(223,247,247,1) 100%);
background: -webkit-linear-gradient(90deg, rgba(79,78,96,1) 0%, rgba(223,247,247,1) 100%);
background: linear-gradient(90deg, rgba(79,78,96,1) 0%, rgba(223,247,247,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4f4e60",endColorstr="#dff7f7",GradientType=1);
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  padding: 0;
  margin: 0;
}

h1 {
  position: absolute;
  top: 30%;
  color: rgba(255, 255, 255, 1);
  padding: 0 1rem;
  text-align: center;
  width: 100%;
}

.email-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 1.2em;
}

#email a {
  color: rgba(255, 255, 255, 1); /* White color */
  text-decoration: none !important; /* Forcefully remove underline */
  font-weight: bold;
  letter-spacing: 0.5px;
}

#email a:visited {
  text-decoration: none !important; /* Ensure no underline on visited links */
}

#email a:hover {
  text-decoration: none; /* No underline on hover */
}

#email a:active {
  text-decoration: none !important; /* No underline when clicked */
}

#email a:focus {
  text-decoration: none !important; /* No underline when focused */
}
}