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

body {
  background-color: #020202;
  color: #ffffff;
  font-family: 'Arial', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1 {
  text-shadow: #e2e2e2 0px 0px 6px;
  line-height: 50vw;
  text-align: center;
}

#root {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.contact {
  background-color: #0a0a0a;
  padding: 30px;
  border-top: 2px solid #333;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #404040;
  font-size: 1.5rem;
}

.mail-slot {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 10px;
  margin: 10px 0;
}

.mail-slot label {
  font-weight: bold;
  color: #404040;
  min-width: 80px;
}

.mail-slot a {
  color: #404040;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mail-slot a:hover {
  color: #606060;
  text-decoration: underline;
}