body {
    margin: 0;

    -ms-overflow-style: none;
    /* for Internet Explorer, Edge */
    scrollbar-width: none;
    /* for Firefox */
    overflow-y: scroll;
    font-family: 'CooperHewitt-Heavy', arial;
    color: #153981;
}

body::-webkit-scrollbar {
    display: none;
    /* for Chrome, Safari, and Opera */
}

#top {
    width: 100%;
    height: 130px;
    justify-content: center;
    align-items: center;
    display: flex;
}

@media only screen and (max-width: 1000px) {
    #top {
        height: 65px;
    }
}

#logo {
    height: 120px;
    padding-top: 40px;
    padding-bottom: 40px;
}

@media only screen and (max-width: 1000px) {
    #logo {
        height: 55px;
        padding-top: 5px;
        padding-bottom: 5px;
    }
}

#contend {
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
}

@media only screen and (max-width: 1000px) {
    #contend {
        width: 100%;
        display: block;
        margin-left: 5px;
        margin-right: 5px;
    }
}

.ulList {
    list-style-type: none;
}

li::before {
    content: "– ";
    color: #fc1f1c;
    font-weight: 1000;
    margin-right: 10px;

    margin-left: -33px;  /* this is to move the icon left */
  padding-right: 10px
}

#textDiv {
    font-size: large;
    line-height: 35px;
    color: #153981;
    overflow: hidden;
}

@media only screen and (max-width: 1000px) {
    #textDiv {
        font-size: medium;
        line-height: 20px;
        color: #153981;
        overflow: hidden;
        position: static;
        bottom: 0px;
    }
}

#picture {
    height: 700px;
}


@media only screen and (max-width: 1000px) {
    #picture {
        height: 350px;
        position: static;
        top: 0px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

#bottom {
    width: 100%;
    text-align: center;
    font-size: x-large;
    line-height: 40px;
    font-weight: bold;
    position: static;
    bottom: 0;
}

@media only screen and (max-width: 1000px) {
    #bottom {
        font-size: medium;
        line-height: 20px;
        margin-left: 5px;
        margin-right: 5px;
    }
}

a {
    color: #153981;
    font-family: 'CooperHewitt-Heavy', arial;
    font-weight: normal;
    text-decoration: none;
    padding-right: 10px;
    padding-left: 10px;
}