@media only screen and (min-width: 1000px) {
    h2 {
        margin-bottom: 50px;
    }
    img {
        max-width: 75%;
        max-height: 85%;
    }
    .center {
        top: 10%;
        -webkit-transform: translateY(10%);
        -moz-transform: translateY(10%);
        -ms-transform: translateY(10%);
        -o-transform: translateY(10%);
        transform: translateY(10%);
        position: absolute !important;
        margin:0 auto;
        width:100%;
    }
    #footer-long {
        display: flex;
    }
    #footer-short {
        display: none;
    }
}

@media only screen and (max-width: 1000px) {
    h2 {
        margin-top: 50px !important;
        margin-bottom: 50px !important;
    }
    img {
        max-width: 75%;
        max-height: 85%;
    }
    #footer-long {
        display: none;
    }
    #footer-short {
        display: flex;
    }
}
