.social-container{
    display:flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
  
}
.social-button{
    position: relative;
    width: 180px;
    height: 50px;
    cursor:pointer;
    perspective: 1000px;
    margin-top: 5rem;
}
.social-button a {
    display:flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    background: #333;
    color: #fff;
    border-radius: 10px;
    transition: background 0.3s ease;
    box-shadow: 0 5px 10px rgba(0,0,0, 0.8);
}
.social-button.linkedin a { background: #0e76a8; }
.social-button.github a { background: #333; }
.social-button.instagram a { background: #C13584; }

.social-button:hover a{
    background:#222;
    transform: scale(1.05);
   
}
.side{
    display: none;
}
.social-button i{
    margin-right: 8px;
}
.about h2{
   vertical-align: middle;
}