* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: white;
  min-height: 100vh;
  padding: 2rem;
}

h1 {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  color: black;
  font-size: 4rem;
  font-weight: 100;
}

.envelope-symbol {
  cursor: pointer;
  margin-left: 0.5rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
  user-select: none;
  vertical-align: baseline;
  font-style: normal;
}

.envelope-symbol:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.email-text {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1rem;
  font-style: normal;
  color: black;
  margin-top: 1rem;
}
