#header{
    width: 100%;
    
}

#header img{
    width: 100%;
}

#content{
    width: 100%;
    min-height: 600px;
    background-color:black;
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    margin-top: -50;
    -webkit-box-shadow: 0px 0px 14px 30px black; 
    box-shadow: 0px 0px 60px 120px black;
    z-index: 2;
}

.main-section{
    padding: 10px 50px;
    box-sizing: border-box;
    background-color: black;
    color: white;
    text-align: center;
    padding-top: 0;
    padding-bottom: 100px;
}

.section-title{
    text-align: center;
    /* margin-top: 20px; */
    position: relative;
    font-size: 36px;
}

.nft-banner{
    width: 100%;
    margin-top: 50px;
}

#about-img{
    width: 700px;
    align-self: center;
}

#about-text{
    text-align: left;
    width: 400px;
}

@media screen and (max-width:500px) {
    #content{
        flex-wrap: wrap;
        text-align: center;
    }

    #about-img{
        width: 100%;
        align-self: center;
        margin-top: 50px;
    }

    #about-text{
        text-align: center;
        margin-top: 50px;
    }

}