@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

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

body, html {
  height: 100%;
  font-family: 'Inter', sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.top {
  background-color: #0ea5e9;
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 2rem 4rem;
}

.top h1 {
  font-size: 5rem;
  line-height: 1;
  font-weight: 700;
  color: #1e293b;
}

.bottom {
  background-color: #1e293b;
  color: #0ea5e9;
  padding: 2rem 4rem;
  flex-shrink: 0;
}

.subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.social-links a {
  color: #0ea5e9;
  margin-right: 1.5rem;
  font-size: 2rem;
  transition: color 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}

.social-links a:hover {
  color: #60ccfb;
}

@media (max-width: 600px) {
  .top, .bottom {
    padding: 1.5rem 2rem;
  }
}