@import url('https://fonts.googleapis.com/css2?family=Aclonica&display=swap'); 
@import url('https://fonts.googleapis.com/css2?family=Aclonica&family=Akaya+Telivigala&display=swap'); 

body {
    background-color: #292929;
    padding: 0;
    margin: 0;
    color: white;
    font-family: "Aclonica";
}

.profileCard-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.name {
    font-size: 2.3rem;
}

.description {
    font-family: "Akaya Telivigala";
    font-size: 1.3rem;
}

.connectwithmeBtn, .downloadresumeBtn {
    font-family: "Aclonica";
    background: none;
    border: 2px solid white;
    color: white;
    padding: 10px;
    border-radius: 5px;
}

.image-wrapper {
    position: relative;
    width: 28rem;
    height: 43rem;
}

.image-wrapper img {
    width: 100%;
    height: 100vh;
    border: 10px solid black;
    width: 31rem;
    height: 43rem;  
    border-radius: 3rem;
    object-fit: cover;
}

.profile-data {
    position: absolute;
    top: 25rem;
    left: 1rem;
    z-index: 2;
    width: 100%;
    padding: 1.5rem;
    border-radius: 3rem;

}

.profile-data p {
    margin-bottom: .2rem;
    padding: 0;
}

.footer-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}

.left-icons, .right-buttons {
    display: flex;
    align-items: center;
    gap: .5rem;
    cursor: pointer;
}

.icon-with-text {
    display: flex;
    align-items: center;
    font-size: .5rem;
    gap: 0.5rem;
    font-family: "Aclonica";
}

.material-symbols-outlined {
    font-size: 2rem;
}

.connectwithmeBtn, .downloadresumeBtn {
    font-family: "Aclonica";
    background: none;
    border: 2px solid white;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.connectwithmeBtn:hover, .downloadresumeBtn:hover {
    background-color: white;
    color: black;
}

.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
}

.modal-content {
  display: flex;
  background-color: #5a5555;
  margin: 38% 40%;
  border-radius: 10px;
  width: 21.9rem;
  padding: 22px;
  align-items: center;
}

#connectModal li{
    list-style: none;
    color: white;
}

#connectModal a {
    color: white;
    text-decoration: none;
    cursor: pointer;
    transition: font-size 3s ease-in color 3s ease-in-out;
}

#connectModal a:hover {
    font-size: 1.2rem;
    color: rgb(173, 201, 248);
}

.closeBtn {
  float: right;
  font-size: 24px;
  cursor: pointer;
}

