
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #80d4e0;
  margin: 0;
  padding: 20px;
  color: #212529;
}

h1 {
  color: #0d6efd;
  text-align: center;
}

ul {
  list-style-type: none;
  padding: 0;
}

ul li {
  margin: 15px 0;
  padding: 10px;
  background: #ffffff;
  border-left: 5px solid #0d6efd;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

ul li a {
  text-decoration: none;
  color: #0d6efd;
  font-size: 1.2rem;
  font-weight: bold;
}

ul li a:hover {
  text-decoration: underline;
}

p, ul {
  max-width: 800px;
  margin: auto;
  font-size: 1rem;
  line-height: 1.6;
}

em {
  color: #6c757d;
}

@media (max-width: 768px) {
  body {
    padding: 10px;
  }
  ul li a {
    font-size: 1rem;
  }
}
.home-btn {
  background: linear-gradient(135deg, #00f0ff, #ff00f0);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.home-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-45deg);
  transition: left 0.5s ease;
}

.home-btn:hover::after {
  left: 200%;
}

.home-btn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

