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

body {
    background-color: #ffffff;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    color: #111111;
}

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

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    pointer-events: none;
    /* Allows mouse events to pass through to the canvas */
}

h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 0.5rem;
    color: #202020;
}

p {
    font-size: 1.2rem;
    font-weight: 300;
    color: #555555;
}

/* Responsive Design for Mobile Devices */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    p {
        font-size: 1rem;
    }

    .content {
        width: 90%;
    }
}