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

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

body {
    background: #f5f5f5;
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    width: 100%;
}

.logo {
    width: 400px;
    height: 200px;
    margin-bottom: -1rem;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

h1 {
    font-size: 2.2rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.typewriter-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto;
    min-height: 3rem;
    line-height: 2.2rem;
}

.typewriter-text.typing {
    border-right: 2px solid #2c3e50;
    animation: blink-caret .75s step-end infinite;
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #2c3e50 }
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .content {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 1.8rem;
        padding: 0 10px;
    }
    
    .logo {
        width: 300px;
        height: 150px;
    }
} 