.mainContent {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin: auto;
    width: 80%;
    background-color: #ffffff;
}

#topMain {
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: space-around;
    padding: 0px 75px;
}

#topLeftMain,
#topRightMain {
    flex: 1;
    margin: 20px;
}

.mainContent h1{
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.mainContent h2{
    margin-bottom: 10px;
    text-align: center;
}

#topLeftMain p{
    margin-bottom: 50px;
    font-size: large;
    text-align: center;
}

#topRightMain{
    display: flex;
    align-items: stretch;
    position: relative;
}

#topRightMain img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

#bottomMain{
    margin: 15px 0px;
    padding: 20px;
    width: 60%;
    background-color: #CCCCCC;
    border-radius: 20px;
}

#bottomMain ul {
    text-align: left;
    margin-top: 25px;
    list-style-type: disc;
    text-align: left;
    display: table;
    margin: 0px auto;
}

#bottomMain li {
    font-size: larger;
    margin-bottom: 20px;
}

hr{
    margin: auto;
    border-bottom: 1px black solid;
    margin-bottom: 15px;
    width: 90%;
}

@media (max-width: 1100px) {
    #topMain{
        padding: 0px 20px;
    }
}

@media (max-width: 1000px) {
    .mainContent {
        width: 90vw;
    }
}

@media (max-width: 750px) {
    .mainContent {
        width: 100vw;
    }
    #bottomMain{
        width: 80%;
    }
    #topRightMain{
        display: none;
    }
}
