.main{
    width: 100%;
    color: var(--white);
    display: flex;
    flex-direction: column;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner{
    position: relative;
    border-top: 10px solid var(--yellow);
    border-bottom: 10px solid var(--yellow);
    height: 326px;
    min-height: 326px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner h1{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
    z-index: 3;
    color: var(--white);
    font-size: 4em;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
    text-align: center;
    text-wrap: wrap;
}

.banner img{
    width: fit-content;    
}

.overlay{
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
}

.legal-container{
    width: 90%;
}

h1{
    margin: 20px 0;
    color: var(--yellow);
}

.legal-container{
    margin: 40px 0;
}

.legal-container ol li{
    margin: 20px 0;
}

.legal-container ol li p{
    margin: 20px 0;
}

.legal-container ol li ul p{
    margin: 20px 0;
}

.legal-container ol hr{
    opacity: 30%;
    border-radius: 10px;
}

.no-list{
    list-style: none;
}

@media (max-width: 626px){
    .banner h1{
        font-size: 2em;
    }
}