@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');

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

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f1ea;
    font-family: 'Audiowide', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: hidden;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 1s ease-out;
}

.logo {
    max-width: 200px;
    height: auto;
}

.brand-name {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #1a1a1a;
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .logo {
        max-width: 150px;
    }
    
    .brand-name {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 120px;
    }
    
    .brand-name {
        font-size: 2rem;
    }
}
