@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(-45deg, #1e3c72, #2a5298, #0f2027, #203a43);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.container {
    max-width: 600px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.25rem;
    opacity: 0.85;
}

.socials {
    margin-top: 2rem;
}

.socials a {
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    margin: 0 1rem;
    padding-bottom: 0.2rem;
    opacity: 0.85;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.socials a i {
    margin-right: 0.5rem;
}

.socials a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease, left 0.3s ease;
}

.socials a:hover::after {
    width: 100%;
    left: 0;
}

@media (max-width: 600px) {
    .socials {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}