.social-icons {
    display: grid;
    gap: .5rem;
    justify-content: right;
    position: fixed;
    bottom: 100px;
    right: 15px;
}
 
.social-icons > a {
    display: flex !important;
    justify-content: center;
    text-decoration: none;
    -webkit-text-decoration: none;
    background: transparent;
    border: 1px solid #ff5f4f;
    color: #ff5f4f;
    border-radius: 2rem;
    padding: 5px;
}
 
.social-icons img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s;
}
 
.social-icons a:hover img {
  transform: scale(1.5);
}