@font-face { 
    font-family: 'Open Sans Regular'; 
    font-style: normal; 
    font-weight: 400; 
    src: url('/fonts/open-sans-v18-latin-regular.woff') format('woff'); 
}

@font-face { 
    font-family: 'Open Sans Bold'; 
    font-style: normal; 
    font-weight: 800; 
    src: url('/fonts/OpenSans-Bold.woff') format('woff'); 
}

@font-face { 
    font-family: 'Open Sans ExtraBold'; 
    font-style: normal; 
    font-weight: 800; 
    src: url('/fonts/open-sans-v18-latin-800.woff') format('woff'); 
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans Regular', sans-serif;
    background: #fbfbfb;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card {
    position: relative;
    width: 430px;
    height: 530px;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: 0.5s;
}

.card:hover {
    box-shadow: 0 50px 80px rgba(0, 0, 0, 0.2);
}

.card .box {
    text-align: center;
    padding: 20px;
}

.card .box .img {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
}

.card .box .img img {
    width: 100%;
    height: 100%;
}

.card .box .name h2 {
    font-size: 30px;
    color: #262626;
    margin-bottom: 9px;
    margin-top: 35px;
}

.card .box .name h3 {
    font-size: 25px;
    color: #a8a8a8;
    margin-bottom: 15px;

}

.card .social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 25px;
}

.card .social-links a {
    font-size: 30px;
    color: #a8a8a8;
    transition: color 0.7s, transform 0.7s;
}

.card .social-links a:hover {
    color: #0088cc;
    transform: rotateY(360deg);
}


.card .social-links .color-at:hover {
    color: #D44638;
}

.card .social-links .color-git:hover {
    color :#000000
}


.card .social-links .color-inst:hover {
    background: linear-gradient(45deg, #fbad50, #cd486b, #8a3ab9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.card .social-links .color-youtube:hover {
    color: #FF0000;
}   