body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000;
    overflow: hidden;
    touch-action: none; /* Prevents default touch actions */
}

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

.content {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 2;
    text-align: left;
    color: white;
    font-family: 'Arial', sans-serif;
}

h1 {
    font-size: 5rem;
    margin: 0;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: lowercase;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

p {
    font-size: 1.5rem;
    margin: 10px 0 0;
    font-weight: 300;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .content {
        top: 20px;
        left: 20px;
    }
    
    h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    p {
        font-size: 1rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .content {
        top: 15px;
        left: 15px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
}