.hero {
    position: relative;
    width: 100%;
    height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-top: 90px;
    overflow: hidden;
    border-bottom: 11px solid rgba(255, 204, 0);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content-wrapper {
    display: flex;
    z-index: 2; 
    gap: 30px;
}

.hero-content h1 {
    font-size: 6rem;
    color: rgb(255, 255, 255);
    text-shadow:0px 4px 10px rgba(0, 0, 0);
    
}

@media (max-width: 1305px) {
    .hero-content h1 {
        font-size: 4rem;
        text-align: center;
    }
}