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

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-image: linear-gradient(to right top, #380b67, #361d73, #332b7e, #303789, #2d4393, #24509e, #1a5ca7, #0d68b0, #0078bb, #0087c3, #0097cb, #0da6d1);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  overflow: hidden;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin: 0;
}

.docs-button {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  transition: all 0.3s ease;
}

.docs-button:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 40px 0 rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}
