body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eee;
    color: #DD1111;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.mobile {
    display: none;
}

@media screen and (max-width:1000px) {
    .desktop {
        display: none;
    }
    .mobile {
        display: block;
    }
}
