*,
::before,
::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Open sans, Helvetica, sans-serif;
}

h2 {
    text-align: center;
    position: relative;
    bottom: -120px;
    color: white;
}

h3{
    color: white;
    text-align: center;
}


.galerie {
    max-width: 1500px;
    margin: 0 auto;
    padding: 100px 10px;
    display: grid;
    grid-template-columns: repeat(auto-fill  , 300px);
    grid-auto-rows: 300px;
    grid-gap: 10px;
    justify-content: center;
    list-style-type: none;
}

.profile-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #b7b7b75a;
    transition: transform 0.4s ease-out;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-social {
    position: absolute;
    top: 0;
    height: 100%;
    list-style-type: none;
}

.side-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin: 5px;
    /* border: 1px solid #999; */
    /* background-color: #1b1b1b; */
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(calc(-100% - 10px));
    transition: transform 0.2s ease-in-out;
}

/* .side-social a:hover { */
    /* background-color: #333;
}

h1 {
    text-align: center;
    position: relative;
   bottom: -50px;
   background: #fbda72;
} */

 .side-social a img {
    width: 80%;
}

.profile-card:hover .side-social a {
    transform: translate(0);
}

.profile-card:hover .side-social a:nth-child(1) {
    transition-delay: 0.1s;
}

.profile-card:hover .side-social a:nth-child(2) {  
    transition-delay: 0.1
    2s;
}

.profile-card:hover .side-social a:nth-child(3) {
    transition-delay: 0.3s;
}

.profile-card:hover {
    transform: scale(0.95);
    box-shadow: 0 0 0 3px #f1f1f1 ;
}

.vid{
   position: relative;
   left: 5%;
}
