body {
  margin: 0;
  background-color: #ffffff;
  font-family: 'EB Garamond', serif;
}

.container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeIn 2s ease-in-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.brand {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #000000;
  border-radius: 50%;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .brand {
    font-size: 1.5rem;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}
