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

body {
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.typing-container {
  position: absolute;
  opacity: 1;
  transition: opacity 1s ease-out;
}

.typing-container.fade-out {
  opacity: 0;
}

.typing-text {
  font-family: Menlo, Monaco, 'Courier New', monospace;
  font-size: 48px;
  color: #fff;
  font-weight: normal;
}

.circles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  opacity: 0;
  transition: opacity 1s ease-in;
}

.circles.fade-in {
  opacity: 1;
}

.circle {
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 50%;
}

.contact-email {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Menlo, Monaco, 'Courier New', monospace;
  font-size: 12px;
  color: #fff;
  z-index: 10;
}
