body {
    margin: 0px;
    background-color: black;
}

.banner {
    margin: 0px;
    color: black;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-image: linear-gradient(to top, #fba915, #fc6d11, #f0420f, #b7241a, #753045, #4b1632, #000000);
    background-position: center;
}

.banner .image1 {
    filter: drop-shadow(-5px 5px 10px #000000);
}

.banner .image2 {
    filter: drop-shadow(5px 5px 10px #000000);
}

.banner .title {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .title .circle { 
    position: absolute;
    top: 100px;
    background-color: #fba915;
    width: 200px;
    height: 100px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    border-bottom: 0;
    z-index: 1;
    -webkit-box-shadow:0px 0px 173px 41px #fba915;
    -moz-box-shadow: 0px 0px 173px 41px #fba915;
    box-shadow: 0px 0px 173px 41px #fba915;
}

.banner .title h1 {
    z-index: 100000000;
    text-align: center;    
}

.banner .image2 {
    transform: scaleX(-1);
}
