#soc-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .social-icons {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: fit-content;
    border-radius: 100px;
    background-color: #00717F;
  }
  
  
  .facebook-ico {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    width: 40px;
    height: 40px;
    margin: .8vh;
    background-color: #003840;
    border-radius: 100%;
  }
  
  
  .insta-ico {
    cursor: pointer;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border: none;
    width: 40px;
    height: 40px;
    padding: .8vh;
    background-color: #003840;
    border-radius: 100%;
  }
  
  .youtube-ico {
    cursor: pointer;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border: none;
    width: 40px;
    height: 40px;
    margin: .8vh;
    background-color: #003840;
    border-radius: 100%;
  }

  .insta-ico:hover,.youtube-ico:hover, .facebook-ico:hover {
    filter: brightness(130%);
  }

  .insta-ico:active,.youtube-ico:active, .facebook-ico:active {
    filter: brightness(150%);
    scale: 95%;
  }