body { 
    font-family: Tahoma, Arial, sans-serif;
    font-size: 200%;
    background: #0d2334;
    color: #eee;
    margin: 0em;
    margin-top: 0em;
}

em, strong {
    color: #903;
    border: red 1px dashed;
}

input {
    font-size: 200%;
    overflow: hidden;
}

button#browser {
    font-size: 200%;
    margin: 0;
}

div.corona {
    width: 864px;
    margin: 0 auto;
}

div.corona-title {
    position: absolute;
    width: 100%;
    top: 370px;
    color: white;
    font-size: 48pt;
    font-style: italic;
}

div.corona-title > a:link,
div.corona-title > a:hover,
div.corona-title > a:visited,
{
    color: white;
}

div.container {
    max-width: 650px;
    margin: 0 auto;
    margin-top: -64px;
}

.center {
    text-align: center;
}

h1, h2 {
    text-align: center;
}

code, .example {
    background-color: #eee;
    border: 1px solid #aaa;
}


div.footer {
    margin-top: 4em;
    padding-top: 2em;
    border-top: 2px solid #999;
    color: white;
}

div.footer a:link { color: #fdd; }
div.footer a:visited { color: #fee; }
div.footer a:active { color: #fff; }

li {
    margin-top: 0.4em;
}

div.content {
    background-color: black;
    padding: 1em;
}

.content h2:first-child,
.content h3:first-child,
.content h4:first-child
{
    margin-top: 0em;
}

p { 
    line-height: 1.3em; 
}


.small { font-size: 8pt; }
.spaced { letter-spacing: 0.2em; }
.hidden { display: none; }


a:link { color: #FF0; }
a:visited { color: #FF9; }
a:active { color: #FA0; }



/* Fancy top images and image deferring stuff */

.top {
  max-width: 100%;
  margin: auto 0;
}

.top img {
  width: 100%;
}

.defer-image > img {
	display: block;
	min-width: 100%;
	max-width: 100%;
}

.defer-image.is-loading {
    position: relative;
}

.image-ratio\:dgftop > div { padding-top: 77.29%; }
.image-ratio\:coronatop > div { padding-top: 77.29%; }
.image-ratio\:bgtop > div { padding-top: 65.35%; }
.image-ratio\:bgnext > div { padding-top: 74.8%; }
.image-ratio\:cstop > div { padding-top: 66.66%; }

@keyframes bobble {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    35% {
        opacity: 1;
        transform: translateY(-40px);
    }
    100% {
        opacity: 0;
        transform: translateY(0);
    }
}

.defer-image.is-loading::after {
    content: ' ';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5em;
    height: 5em;
    margin: -0.5em 0 0 -0.5em;
    background: rgba(125, 125, 125, 0.5);
    border-radius: 100%;
    animation: bobble 3s cubic-bezier(0.6, 1, 1, 1) infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes dropIn {
    from {
        top: -200px;
    }
    to {
        top: 0px;
    }
}

.defer-image.is-loaded > img {
    animation: fadeIn 20s both;
}

.rest {
	  opacity: 0;
}

.rest.is-loaded {
    animation: fadeIn 5s both;
}

