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

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
}

.hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.hero-heading {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.6;
}

.hero-canvas {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#heroCanvas {
    width: 100%;
    max-width: 500px;
    max-height: 500px;
    height: 700px;
    background-color: transparent;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 1rem;
    }
    
    .hero-heading {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    #heroCanvas {
        max-width: 100%;
        max-height: 500px;
        height: 500px;
    }
}

