@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap');

:root {
    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    --accent-color: #1a1a1a;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 2rem;
    animation: fadeIn 1.5s ease-out;
}

.logo-container {
    margin-bottom: 2rem;
    position: relative;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

h1 {
    font-weight: 600;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.5s forwards;
}

p {
    font-weight: 300;
    font-size: 1.2rem;
    letter-spacing: 4px;
    color: #4a4a4a;
    text-transform: uppercase;
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.8s forwards;
}

.divider {
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
    margin: 1.5rem auto;
    opacity: 0;
    animation: expandWidth 0.8s ease-out 1.1s forwards;
}

.social-links {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.5s forwards;
}

.social-links a {
    color: var(--text-color);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 1px;
    font-weight: 300;
}

.social-links a i {
    font-size: 1.2rem;
}

.social-links a:hover {
    color: #000;
    opacity: 1;
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 50px;
        opacity: 0.5;
    }
}