.MHP_Section {
    width: 90%;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.76);
    overflow: auto;
    border: solid 10px whitesmoke;
    transition: border-color 4s;
}

.MHP_Section h1 {

    width: 90%;
    min-width: 230px;
    margin: auto;
    margin-top: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    border: solid rgb(255, 255, 255) 8px;
    border-radius: 15px;
    color: rgb(255, 255, 255);
    max-width: 1200px;
}

.MHP_Section p {
    width: 90%;
    margin: auto;
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 25px;
    font-weight: 600;
}

.MHP_Section h2 {
    margin: auto;
    width: 90%;
    max-width: 1200px;
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 30px;
    border: rgb(255, 255, 255) 5px solid;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 15px;
    margin-top: auto;
    transition: margin-top 500ms;
}

.MHP_Section div {
    margin: auto;
    width: 80%;
    text-align: center;
    display: block;
    margin-bottom: 50px;
    margin-top: 20px;
    transition: width 500ms;
}

.MHP_Section div table{
    margin: auto;
    margin-top: 40px;
    transition: margin-top 500ms;
}


.MHP_Section div table tr td{
    color: whitesmoke;
    font-size: 30px;
    font-weight: 800;
}

@media screen and (min-width: 500px){
    
    .MHP_Section div {
        display: flex;
    }

    .MHP_Section div table{
        margin-top: 0px;
        transition: margin-top 500ms;
    }
    
    .MHP_Section h2 {
        margin-top: 50px;
        transition: margin-top 500ms;
    }

}

@media screen and (min-width: 1000px){
    .MHP_Section div {
        width: 60%;
        transition: width 500ms;
    }
}