*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial;
}

body{
  height:100vh;

  background:
  linear-gradient(rgba(0,0,0,0.7),
  rgba(0,0,0,0.7)),

  url("https://images.unsplash.com/photo-1515879218367-8466d910aaa4?q=80&w=1600");

  background-size:cover;
  background-position:center;

  display:flex;
  justify-content:center;
  align-items:center;
}

/* OVERLAY */

.overlay{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:20px;
}

/* CARD */

.about-card{
  width:900px;
  background:rgba(255,255,255,0.1);
  backdrop-filter:blur(10px);

  border:1px solid rgba(255,255,255,0.2);

  border-radius:20px;

  display:flex;
  align-items:center;
  gap:40px;

  padding:40px;

  box-shadow:0 0 30px rgba(0,0,0,0.4);
}

/* IMAGE */

.profile-image img{
  width:280px;
  height:350px;

  object-fit:cover;

  border-radius:20px;

  border:4px solid white;
}

/* CONTENT */

.about-content{
  color:white;
}

.about-content h1{
  font-size:50px;
  margin-bottom:10px;
}

.about-content h3{
  color:#ffd814;
  margin-bottom:20px;
  font-size:24px;
}

.about-content p{
  font-size:18px;
  line-height:30px;
  margin-bottom:20px;
}

/* BUTTONS */

.buttons{
  display:flex;
  gap:20px;
  margin-top:20px;
}

.buttons a{
  text-decoration:none;
  background:#ffd814;
  color:black;

  padding:12px 25px;

  border-radius:30px;

  font-weight:bold;

  transition:0.3s;
}

.buttons a:hover{
  transform:scale(1.05);
  background:white;
}

/* RESPONSIVE */

@media(max-width:900px){

  .about-card{
    flex-direction:column;
    text-align:center;
  }

  .profile-image img{
    width:220px;
    height:280px;
  }

  .about-content h1{
    font-size:38px;
  }

}