/* Fonts imported */
@font-face {
    font-family: biosansreg;
    src: url(elements/flat-it_-_biosans-regular.woff);
}

/* Fonts imported */
@font-face {
    font-family: biosansbold;
    src: url(elements/flat-it_-_bio_sans_bold.woff);
}

body {
    margin: 0;
    background: #00396f;
    background-image: url("elements/background_clock.png");
    background-size: cover;
    background-position: 50% 0%;
    background-repeat: no-repeat;
    font-family: biosansreg;
}

/* https://stackoverflow.com/questions/2005954/center-a-positionfixed-element */
.message {
    position: fixed;
    color: #00396f;
    width: 500px;
    top: 60%;
    left: 50%;
    margin-top: -100px;
    margin-left: -250px;
    box-shadow: 0 14px 28px rgb(0 0 0 / 25%), 0 14px 28px rgb(0 0 0 / 25%);
    border-radius: 15px;
    text-align: center;
    padding: 10px 15px;
    background: #e9eef2;
}

a {
    color: #00396f;
}

h1 {
    font-family: biosansbold;
    margin: 7px;
    font-size: 250%;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logos img {
    width: 110px;
    padding: 5px;
}

.logos .iris {
    height: 16px;
}

.logos .idc {
    margin-right: 8px;
}

@media (max-width: 700px), screen and (max-height: 700px) {
    .message {
        width: 100%;
        position: initial;
        padding: 15px 0;
        left: 0;
        right: 0;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }

    body {
        background: #e9eef2;
        background-image: url("elements/background_clock.png");
    }

    h1,p,a {
        padding: 0 15px;
    }
}