body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #a2d9ff, #6cc1ff);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#container {
    width: 400px;
    border-radius: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
}

.header {
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 20px;
}

.subheading {
    font-size: 16px;
    color: #555555;
    margin: 5px 0;
}

#contact {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.contact-info {
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}

.contact-info:hover {
    transform: scale(1.2);
}
