/* PROFILE CARD */
.profile-card {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 200px;
    margin-left: 200px;
    height: calc(100vh - 130px); 
}
.profile-info h1 {
    font-family: 'Coolvetica', sans-serif; 
    color: #121212;
    font-size: 72px;
    margin: 0;
    padding: 0;
}
.profile-info h2 {
    font-family: 'Coolvetica', sans-serif; 
    color: #6fe04a;
    font-size: 52px;
    margin: 0;
    padding: 0;
}
.profile-info p {
    font-family: 'Archivo', sans-serif;
    color: #121212;
    font-size: 20px;
}

/* ======= MOBILE RESPONSIVENESS ======= */
@media (max-width: 768px) {
    .profile-card {
      flex-direction: column;
      margin: 20px;
      height: auto;
      text-align: center;
    }
  
    .profile-card img {
      width: 150px;
      height: auto;
      margin-bottom: 20px;
    }
  
    .profile-info h1 {
      font-size: 36px;
    }
  
    .profile-info h2 {
      font-size: 28px;
    }
  
    .profile-info p {
      font-size: 16px;
    }
}