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

html,
body {
  background-color: #faf3e8;
  font-family: "Montserrat", sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  overflow-y: hidden;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 32px 24px;
  animation: fadeUp 0.8s ease both;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #2c2c2a;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c85c3a;
  display: inline-block;
}

.illustration {
  width: min(700px, 85vw);
  max-width: 100%;
  display: block;
  animation: cardFloat 4s ease-in-out infinite;
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 700;
  color: #2c2c2a;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 8px;
}

.title em {
  font-weight: 300;
  color: #c85c3a;
}

.subtitle {
  font-size: 15px;
  font-weight: 300;
  color: #9a8f82;
  margin-top: 4px;
}
.dev-badge {
  position: fixed;
  display: flex;
  bottom: 0;
  margin: 16px;
  background: #2c2c2a;
  color: #faf3e8;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 999px;
}
