/* style.css */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #74ebd5 0%, #ACB6E5 100%);
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  margin: 0;
}

h1 {
  color: #fff;
  font-size: 3rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  margin: 0;
}

.labo0 {
  text-align: center;
  margin-top: 40px;
  animation: popIn 1s ease-out;
}

.labo0 h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.4);
}

a {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(45deg, #ff6a00, #ee0979);
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

a:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.4);
  background: linear-gradient(45deg, #ee0979, #ff6a00);
}

/* Animations */
@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
