@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400&display=swap');

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

body {
    font-family: 'Arial', sans-serif;
    background: white;
    height: 100vh;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}

.logo-container {
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
}

.logo {
    width: 450px;
    height: 300px;
}

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

.message {
    text-align: center;
    margin-top: 20px;
    width: 450px;
}

.message p {
    font-family: 'Courier Prime', monospace;
    font-size: 1.2rem;
    color: #333;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.5px;
}

.company-name {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

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

@media (max-width: 768px) {
    .logo {
        width: 280px;
        height: 187px;
        margin-bottom: 20px;
    }
    
    .message {
        width: 90vw;
        margin-top: 15px;
    }
    
    .message p {
        font-size: 1rem;
    }
    
    .company-name {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 220px;
        height: 147px;
    }
    
    .message {
        width: 95vw;
        margin-top: 10px;
    }
    
    .message p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .company-name {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .tagline {
        font-size: 1rem;
    }
}