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

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #00062F;
    font-family: 'parisine-std', Achemine, Avenir, 'Segoe UI', sans-serif;
}

#canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    pointer-events: none;
}

.text-container {
    text-align: center;
}

h1 {
    color: #ffffff;
    font-size: 4rem;
    letter-spacing: 2px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
}

h1 .light {
    font-weight: 300;
}

h1 .bold {
    font-weight: 700;
}

.subtitle {
    color: #cbd5e1;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: lowercase; 
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .subtitle { 
        font-size: 0.8rem; 
        letter-spacing: 4px; 
    }
}
