#home {
    background-image: url("Banner1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    height: 100vh;
    width: 100vw;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: white;
    padding: 20px;
    position: relative;
}


#home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5); /* dark overlay for readability */
}

.home-content {
    position: relative;
    max-width: 800px;
    color: hotpink;
    z-index: 2;
    left: 300px;
    top: -300px;
}

#home h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

#home p {
    font-size: 20px;
}
