*{
   margin: 0;
   padding: 0;
   box-sizing: border-box;
} 

body, html {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(167, 164, 164);
  }


.card{
    width: 400px;
    margin: auto;
    padding: 35px;
    background: #ebe1e1;
    border-radius: 20px;
    position: relative;
    text-align:justify;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(5, 5, 5, 0.2);
}

.picture {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    transition: transform 0.3s ease-in-out;
  }

  .picture img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: auto;
  }

  .picture:hover{
        transform: scale(1.4); 
  }

  h2, h3 {
    transition: transform 0.3s ease-in-out;
    margin-bottom: 10px;
    text-align: center;
}

h3{
    font-size: 27px;
}

h2:hover, h3:hover {
    transform: scale(1.1); 
}

p {
    font-size: 17px;
    color: #272626;
    margin-top: 20px;
    line-height: 1.5;
}

.contact {
  font-size: 16px;
  font-weight: bold;
  color: #272626;
}

.contact-line {
  margin: 0;
  padding: 2px 0; 
  display: flex;
  align-items: center;
  transition: transform 0.2s ease, color 0.2s ease;
}

.contact-line:hover {
  transform: scale(1.03);
  color: #0557b4;
}

i {
    color: rgb(27, 27, 27);
    padding: 2px;
    font-size: 20px;
    margin: 2px;
}

.socials {
    display: flex;
    gap: 15px;
    font-size: 20px;
    justify-content: center; 
    align-items: center;
}

.socials i {
    transition: color 0.3s, transform 0.3s;
    padding: 10px;
    margin-top: 5px;
    font-size: 30px;
}

.socials i:hover {
    color: #0557b4;
    transform: scale(1.2);
}

  .location {
    display: inline-flex; 
    align-items: center;
    gap: 10px;
}




