@charset "UTF-8";
.btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(
    180deg,
    rgba(5, 54, 70, 0.95),
    rgba(15, 90, 110, 0.85)
  );
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
