.contact-container {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;;
    padding-top: 50px;
    padding-bottom: 100px;
  }
  
  .contact {
    text-align: center;
    margin-bottom: 100px;
  }
  
  .contact img {
    width: 150px;
    height: auto;
    border-radius: 10%;
    margin-bottom: 10px;
    transition: ease 0.5s;
  }

  .contact img:hover {
    width: 175px;
    height: auto;
    transition: ease 0.5s;
  }
  
  .contact p {
    font-family: 'Roboto Regular';
    font-size: 20px;
    color: #DDDDDD;
    margin: 0;
    font-weight: bold;
    padding-top: 5px;
  }
  
  .contact a {
    text-decoration: none;
    color: #171717;
  }