@import url("https://fonts.googleapis.com/css2?family=Judson:ital,wght@0,400;0,700;1,400&display=swap");

/* font-family: "Judson", serif; */

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* font-family: "Poppins", sans-serif; */




.container {
  min-height: 100vh;
 max-width: 1025px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;


}

.card {
  background: #ffffff;
  padding: 50px;
  border-radius: 20px;
  width: 100%;
  box-shadow: 3px -3px 8px 0 rgba(0, 0, 0, 0.2), -3px 3px 8px 0 rgba(0, 0, 0, 0.2);
}

.card-inner {
 
  background: #0b1560;
  border-radius: 12px;
  padding: 30px 98px;
  text-align: center;
}

.logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto;
  overflow: hidden;
  margin-top: 50px;
}

.card-inner .content>h2 {
 
  margin-top: 50px;
  font-size: 36px;
  font-weight: 400;
  color: #fff;
  font-family: "Judson", serif;
 text-align: center;

}

.experience-btn {
  margin-top: 20px;
  font-size: 18px;
  border: none;
  text-decoration: underline;
  color: #ffffff;
  padding-bottom: 90px;
  transition: 0.5s all ease-in;
}

.experience-btn:hover {
  color: #F08526;

}




/* RESPONSIVE */
@media (max-width: 768px) {
  .card {
    padding: 30px;
  }

  .card-inner .content>h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 15px;
  }

  .card {
    padding: 20px;
  }

  .card-inner {
    padding: 40px 15px;
  }

  .logo {
    width: 90px;
    height: 90px;
  }

  .card-inner .content>h2 {
    font-size: 22px;
    margin-top: 10px;
  }

  .experience-btn {
    font-size: 16px;
    margin-bottom: 20px;
    /* Adds space at bottom */
  }
}