body {
    font-family: 'Helvetica Neue', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f0f2f5;
    color: #333;
    padding: 1rem;
    box-sizing: border-box;
}

header {
    text-align: center;
    width: 100%;
    margin-bottom: 0.5rem; /* Reduced gap */
}

header h1 {
    font-size: 2.5rem;
    color: #4e54c8;
    margin: 0;
}

.welcome {
    text-align: center;
    margin: 0.5rem 0; /* Reduced gap */
}

.welcome p {
    font-size: 2rem;
    font-weight: 300;
    background: linear-gradient(to right, #4e54c8, #8f94fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.welcome .small-text {
    font-size: 1rem;
    color: #4e54c8;
    margin-top: 0.5rem;
}

.social-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    margin-top: 1rem;
    width: 100%;
}

.social-media a {
    text-decoration: none;
    color: #4e54c8;
    border: 1px solid #4e54c8;
    border-radius: 5px;
    padding: 10px 15px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.social-media a:hover {
    background-color: #4e54c8;
    color: #fff;
    transform: scale(1.05);
}

footer {
    margin-top: auto;
    padding: 1rem;
    text-align: center;
    font-size: 0.75rem; /* Smaller font size */
    color: #666;
}

/* Media Query for Mobile Devices */
@media (max-width: 600px) {
    header h1 {
        font-size: 2rem;
    }

    .welcome p {
        font-size: 1.5rem;
    }

    .social-media a {
        font-size: 1rem;
        padding: 8px 12px;
    }
}
