/* Centering the icon container in the page */
.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  
  /* Icon styles */
  .icon {
    text-decoration: none;
    color: white;
    background-color: #3b5998;
    padding: 10px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 20px;
    transition: background-color 0.3s ease;
  }

  .icon:hover {
    opacity: 0.8;
  }

  .icon.instagram {
    background-color: #C13584;
  }
  