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

html, body {
  height: 100%;
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #1a2332;
  color: #ffffff;
  overflow-x: hidden;
}



.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.hero {
  text-align: center;
  max-width: 800px;
  width: 100%;
}

.greeting {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
  color: #ffffff;
}

.name-highlight {
  color: #4a90e2;
  font-weight: 400;
}

.status {
  font-size: 1.2rem;
  color: #8892b0;
  line-height: 1.6;
  margin-bottom: 60px;
  font-weight: 300;
}

.contact-email {
  text-align: center;
  margin-top: 40px;
}

.email-link {
  font-size: 1.1rem;
  color: #8892b0;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
}

.email-link:hover {
  color: #4a90e2;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .greeting {
    font-size: 2.8rem;
  }
  
  .status {
    font-size: 1.1rem;
  }
  
  .email-link {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .greeting {
    font-size: 2.2rem;
  }
  
  .status {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .email-link {
    font-size: 0.9rem;
  }
}
