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

/* BODY */
body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #4F46E5, #9333EA);
  padding: 20px;
}

/* CONTACT CARD */
.contact {
  background: white;
  padding: 30px;
  border-radius: 12px;
  width: 400px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* HEADINGS */
.contact h2 {
  margin-bottom: 10px;
  color: #4F46E5;
  font-size: 24px;
}

.contact p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #555;
}

/* SUB HEADINGS */
.contact h3 {
  margin-top: 15px;
  margin-bottom: 8px;
  color: #333;
  font-size: 18px;
}

/* BUTTON BASE */
.btn {
  display: block;
  text-decoration: none;
  padding: 12px;
  margin: 8px 0;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  transition: 0.3s;
}

/* DIFFERENT PLATFORMS */
.gmail {
  background: #EA4335;
}

.instagram {
  background: #E1306C;
}

.linkedin {
  background: #0077B5;
}

.facebook {
  background: #1877F2;
}

/* HOVER EFFECT */
.btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* -------------------- */
/* MOBILE DEVICES (up to 600px) */
/* -------------------- */
@media(max-width:600px){
  .contact{
    width: 90%;
    padding: 20px;
  }
  .contact h2{
    font-size: 20px;
  }
  .contact h3{
    font-size: 16px;
  }
  .contact p{
    font-size: 13px;
  }
  .btn{
    padding: 10px;
    font-size: 14px;
  }
}

/* -------------------- */
/* TABLETS / SMALL LAPTOPS (601px–1024px) */
/* -------------------- */
@media(min-width:601px) and (max-width:1024px){
  .contact{
    width: 80%;
    padding: 25px;
  }
  .contact h2{
    font-size: 22px;
  }
  .contact h3{
    font-size: 17px;
  }
  .contact p{
    font-size: 14px;
  }
  .btn{
    padding: 11px;
    font-size: 15px;
  }
}

/* -------------------- */
/* LARGE SCREENS (1025px and above) */
/* -------------------- */
@media(min-width:1025px){
  .contact{
    width: 400px;
    padding: 30px;
  }
  .contact h2{
    font-size: 24px;
  }
  .contact h3{
    font-size: 18px;
  }
  .contact p{
    font-size: 14px;
  }
  .btn{
    padding: 12px;
    font-size: 16px;
  }
}