* {
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
}

body {
    background-color: #eed4d4;
}

.card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: 10px;
}

.card-text h1 {
    margin-top: 10px;
}

.social-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 20px;
    width: 100%;
}

.social-container a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 50px;
    border:1px solid #fff;
    text-decoration: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    gap: 12px;
    transition: all 0.3s ease;
    filter: brightness(1.1);
    transform: scale(1.02);
}
.social-container a i {
    margin-right: 10px; 
}
.btn-whatsapp:hover{
    background-color: #25d366;
    color: white;
    border:none;
    transform: translatey(-3px);
}
.btn-facebook:hover{
    background-color: #1877F2;
    color: white;
    border:none;
    transform: translatey(-3px);
}
.btn-instagram:hover{
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white !important;
    border: none;
    transform: translateY(-3px);
}
.btn-linkedin:hover{
    background-color:#0077B5;
    color: white;
    border:none;
    transform: translatey(-3px);
}









