* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body, html {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
    color: white;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/kubic-overlay-fullscreen.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 600px;
    z-index: 1;
    opacity: 0;
    transition: opacity 1s ease;
}

.logo {
    margin-bottom: 2rem;
}

.logo img {
    max-width: 250px;
    height: auto;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Responsive styles */
@media (max-width: 768px) {
    .logo img {
        max-width: 180px;
    }
    
    h1 {
        font-size: 2.2rem;
        letter-spacing: 0.3rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        max-width: 150px;
    }
    
    h1 {
        font-size: 1.8rem;
        letter-spacing: 0.2rem;
    }
    
    h2 {
        font-size: 1.2rem;
    }
    
    p {
        font-size: 0.9rem;
    }
} 