html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

.hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero-text {
    color: white;
    text-align: center;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
    padding: 1rem;
}
