/* styles.css */
:root {
  --bg: #000000;
  --bg-alt: #111111;
  --text: #f5f5f5;
  --text-light: #cccccc;
}

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

html, body {
  width:100%;
  height:100%;
  background: linear-gradient(45deg, var(--bg), var(--bg-alt));
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite alternate;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  overflow:hidden;
}

@keyframes gradientShift {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

.container {
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:1rem;
  min-height:calc(100vh - 40px);
}

h1 {
  font-weight:600;
  font-size:2.5rem;
  margin-bottom:1rem;
}

.info h2 {
  font-weight:300;
  font-size:1rem;
  margin:0.3rem 0;
}

.info h2 span {
  font-weight:400;
  color: var(--text-light);
}

footer {
  position:absolute;
  bottom:10px;
  width:100%;
  text-align:center;
}

footer a {
  font-size:0.75rem;
  color: var(--text-light);
  text-decoration:none;
  opacity:0.6;
  transition: opacity 0.3s ease;
}

footer a:hover {
  opacity:1;
}