/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #000;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Container for centering content */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}

/* Main title styling */
.title {
    font-family: 'Funnel Display', sans-serif;
    font-size: 120px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        4px 4px 8px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    padding: 20px;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .title {
        font-size: 80px;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 60px;
        letter-spacing: 0.5px;
    }
}

