body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Roboto', sans-serif;
    color: #fff;
}

.card {
    background-color: rgba(66, 66, 66, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 350px;
    width: 90%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.card h1 {
    margin-top: 0;
    font-size: 26px;
    font-weight: 700;
}

.card p {
    margin: 10px 0;
    font-size: 18px;
    font-weight: 300;
}

.social-media {
    margin-top: 20px;
}

.social-icon {
    margin: 0 10px;
    color: #fff;
    font-size: 24px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: #4ca1af;
    transform: scale(1.2);
}
