body {
    background-color: black;
    display: flex;
    justify-content: center;
}

h1, h2 {
    font-weight: 400;
}

h2 {
    text-indent: 20px;
}

.pDiv {
    padding-left: 40px;
}

ul {
    padding-left: 30px;
}

b {
    font-weight: 500;
}

#textDiv {
    margin-top: 50px;
    height: fit-content;
    width: 90%;
}

#ImgTextcontainer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: min-content;
}

#ImgTextcontainer img {
    display: none;
    height: 500px;
    border-radius: 20px;
    margin-left: 20px;
    object-fit: cover;
}

@media screen and (min-width: 601px) {
    #textDiv {
        margin-top: 100px;
        width: 60%;
    }

    #ImgTextcontainer {
        flex-direction: row;
    }

    #ImgTextcontainer img {
        display: flex;
    }
}