/* styles.css */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #141e30, #243b55);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

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

.description {
    font-size: 1.1em;
    margin-bottom: 20px;
    opacity: 0.8;
}
.social-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.social-icon {
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    width: 250px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-size: 1.1em;
}

.social-icon:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.linkedin {
    background: #0077b5;
}

.instagram {
    background: #e4405f;
}

.facebook {
    background: #3b5998;
}

.youtube {
    background: #ff0000;
}

.github {
    background: #000000;
}
