body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #181a20 0%, #232526 100%);
  color: #f5f6fa;
  font-family: 'Segoe UI', 'Arial', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #232526 0%, #1a1a2e 100%);
}

.content {
  background: rgba(30, 32, 40, 0.35);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-radius: 1.5rem;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  padding: 3rem 4rem;
  text-align: center;
  transition: box-shadow 0.3s;
}

.content:hover {
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.45);
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  color: #00e6d0;
  text-shadow: 0 2px 16px rgba(0,230,208,0.15);
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #f5f6fa;
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0,0,0,0.12);
}

.desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #b2becd;
}

.contact {
  font-size: 1.1rem;
  color: #f5f6fa;
  background: rgba(0, 230, 208, 0.08);
  border-radius: 0.5rem;
  padding: 0.7rem 1rem;
  display: inline-block;
  box-shadow: 0 2px 8px 0 rgba(0,230,208,0.07);
}

.contact a {
  color: #00e6d0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s;
}

.contact a:hover {
  color: #00bfae;
}
