* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", Arial, sans-serif;
}

/* Background */
.bg {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(120deg, #667eea, #764ba2),
    url("../images/computer.png");
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity:0.5;
}



/* Buttons */
.buttons {
  margin:20px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  
}

.buttons a,
.back {
  padding: 14px 36px;
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;

  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  background: linear-gradient(to right,purple, #dd2476);
  color: white;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(221, 36, 118, 0.4);
}

.buttons a:hover,
.back:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 15px 35px rgba(238, 36, 211, 0.6);
}

/* Text */
h1,h3,.contact{
  text-align: center;
  justify-content: center;
  margin-top:100px;
}
h1 {
  font-size: 50px;
  margin-bottom: 8px;
  letter-spacing: 1px;
  color:purple;
}

h3 {
  font-size: 50px;
  margin-top: 20px;
  font-weight: 300;
  margin-bottom: 25px;
  color: black;
  font-weight: bold;
}

.contact {
  font-size: 33px;
  margin-bottom: 30px;
  margin-top: 10px;
  opacity: 0.9;
  font-weight: bold;
  color:purple;
}

/* Animations */
.fade-in {
  animation: fadeUp 1.5s ease-out forwards;
  opacity: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Mobile Responsive */
@media (max-width: 768px) {
  .card {
    margin: 50px 20px;
    padding: 40px 25px;
  }

  h1 {
    font-size: 34px;
  }

  .buttons a {
    padding: 12px 26px;
  }
}

footer {
            position: absolute;
            bottom: 15px;
            font-size: 13px;
            opacity: 0.6;
        }
