/* open-sans-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v40-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

* {
    margin: 0;
    padding: 0;
    font-family: Calibri, 'Open Sans', sans-serif;
    text-align: center;
    background: #fff;
    color: #000;
}

div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    padding: 20px;
}

p {
    margin: 20px 0 0;
}

img {
    width: 100%;
    height: auto;
}

@media only screen and (max-width: 400px) {
    div {
        position: static;
        width: auto;
        transform: none;
    }
}