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

body {
  background-color: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  position: relative;
}

h1 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 100px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  position: absolute;
  top: 200px;
  left: 100px;
}

.email {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #e0e0e0;
  position: absolute;
  top: 450px;
  left: 100px;
}

.email a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.email a:hover {
  opacity: 0.7;
}
.email a:focus,
.email a:active {
  text-decoration: none;
  color: inherit;
}


footer {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0;
  color: #666;
  position: absolute;
  bottom: 60px;
  left: 100px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 48px;
    left: 24px;
    top: 100px;
  }

  .email {
    top: 220px;
    left: 24px;
    font-size: 16px;
  }

  footer {
    left: 24px;
    bottom: 40px;
    font-size: 14px;
  }
}
