
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 20px;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
}

.card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card {
    background: rgba(255, 255, 255, 0.15);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 380px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    transition: transform 0.4s ease-in-out, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.profile {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid white;
}

h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

ul {
    list-style: none;
    font-size: 15px;
    opacity: 0.85;
}

ul li {
    margin-bottom: 5px;
}

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

.social-links a {
    padding: 10px 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: background 0.3s;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.3);
}

.contact-btn {
    margin-top: 20px;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    background: white;
    color: #1e1e1e;
    font-weight: bold;
    cursor: pointer;
    transition: background  0.3s, transform 0.3s;
}

.contact-btn:hover {
    transform: scale(1.05);
}