html,
body {
	height: 100%;
	padding: 5;
	margin: 5;
	font-family: 'Courier New', Courier, monospace, serif;
}

.page {
    position: center;
   display: table;
    table-layout: fixed;
   width: 100%;
    height: 100%;
    line-height: normal;
    text-align: center;
    font-size: 1.1em;
    background-color: #f0f0f0;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Headings */
h1,
h2,
h3,
h4,
h5 {
    line-height: 1.3;
    font-weight: normal;
}

/* Page overlay */
.page:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
   bottom: 0;
    right: 0;
    filter: alpha(opacity=40);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    opacity: 0.4;
}

/* Links */
a,
a:link {
    color: inherit;
    filter: alpha(opacity=85);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
   opacity: 0.85;
}

a:hover,
a:focus,
a:active {
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    opacity: 1;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

/* Lists */
ul,
ol {
    display: inline-block;
    text-align: left;
    max-width: 50%;
}

/* Container */
.container {
    position: relative;
    display: table-cell;
    width: 100%;
    vertical-align: middle;
    padding: 1em 2em;
    z-index: 1;
}

/* Content */
.content {
    max-width: 900px;
    margin: 0 auto;
}

/* Social links */
.social-links:empty {
    outline: 1px solid yellow;
}
.social-links {
    padding: 1em 0;
    vertical-align: middle;
}
.social-links a {
    padding: 0 0.3em;
    line-height: normal;
}

/* Hosting info */
.hosting-info {
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1em;
    font-size: 0.8em;
}
.hosting-info p {
    margin: 0;
    padding: 0;
    font-size: 12px;
}

.overlay-bright:before {
    background-color: white;
    filter: alpha(opacity=70);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    opacity: 0.7;
}

/* Media queries */
@media screen {
    .page[class] {
        background-image: url("https://assets.storage.infomaniak.website/images/background/et/14-medium.jpg");
    }
}

/* Debug footer */
body.debug:after {
    content: "default";
    position: fixed;
    left: 0;
    bottom: 0;
    background-color: white;
    color: black;
    padding: 0.5em;
    font-size: 10px;
    text-transform: uppercase;
}

/* Small screens */
@media screen and (max-width: 640px) {
    body.debug:after {
        content: "small";
    }
    h1 {
        font-size: 2em;
    }
    ul,
    ol {
        max-width: none;
    }
    .page {
        min-width: 300px;
    }
    .page .container {
        padding: 3em;
    }
}

/* Medium screens */
@media screen and (min-width: 641px) and (max-width: 1199px),
       (min-height: 500px) and (max-height: 1199px) {
    body.debug:after {
        content: "medium";
    }
}

/* Large screens */
@media screen and (min-width: 1200px) {
    body.debug:after {
        content: "large";
    }
}

.ie8 .page .fallback-bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-width: inherit;
    z-index: 0;
}