body {
    background-image: url('../images/giant-a.png');

    word-break: break-word;
    margin: 0;
    line-height: 1.5;
}

body, .loader {
    background-size: 90%;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.loader {
    background-image: url('../images/giant-a-fg.png');

    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;

    position: fixed;
    z-index: -1;

    background-color: var(--background);

    transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -webkit-transition: opacity 0.5s ease-in-out;

    text-align: center;
    padding-top: 80vh;
    font-size: 3em;
    font-family: monospace;
    color: var(--foreground);

    opacity: 0;
}

a {
    padding-left: 0.1em;
    padding-right: 0.1em;
}

hr {
    opacity: 0.4;
}

.header hr {
    opacity: 1;
}

.header {
    left: 0;
    top: 0;
    position: -webkit-sticky;
    position: sticky;
    z-index: 999;
}

.center-column {
    padding-left: 20%;
    padding-right: 20%;
    padding-bottom: 5%;
}

@media only screen and (max-width: 600px) {
    .center-column {
        padding-left: 6%;
        padding-right: 6%;
    }
}

.contact-methods {
    text-align: center;

    margin-top: 0.4em;
    margin-bottom: 0.4em;

    display: inline;
}

.contact-methods div {
    padding: 2%;
    margin: 2%;
    display: inline;
    text-align: center;
}

.contact-methods-center {
    padding-top: 0.4em;
}

.contact-methods hr {
    margin-top: 0.4em;
}

.welcome-banner {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
}

.welcome-banner-image img {
    height: 200px;
    width: 200px;
    width: auto;
    justify-content: center;
    vertical-align: middle;
}

.welcome-banner-image {
    height: 200px;
    width: 200px;
    flex-shrink: 1;
    width: 100%;
    flex-basis: 10%;
    justify-content: center;
    vertical-align: middle;
}

.welcome-banner-text {
    width: 60%;
    flex-grow: 1;
    text-align: center;
    padding-left: 10%;
    padding-right: 10%;
}

code {
    white-space: pre-wrap;
    word-wrap: break-word;
    word-break: break-all;
    overflow: scroll;
    max-width: 100%;
}

/* loader animation */

.x {
    width: 10px;
    height: 10px;
    background-color: var(--foreground);
    border-radius: 10px;
    display: inline-block;
    animation: fade 3s forwards;
    -webkit-animation: fade 3s forwards;
    -moz-animation: fade 3s forwards;
    -o-animation: fade 3s forwards;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-delay: 1s;
}


.b {
    animation: fade 3s forwards;
    -webkit-animation: fade 3s forwards;
    -moz-animation: fade 3s forwards;
    -o-animation: fade 3s forwards;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-delay: 2s;
}

.c  {
    animation: fade 3s forwards;
    -webkit-animation: fade 3s forwards;
    -moz-animation: fade 3s forwards;
    -o-animation: fade 3s forwards;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-delay: 3s;
}

@keyframes fade {
    0% {opacity:0;}
    50% {opacity:1;}
    100% {opacity:0;}
}

@-webkit-keyframes fade {
    0% {opacity:0;}
    50% {opacity:1;}
    100% {opacity:0;}
}

@-moz-keyframes fade {
    0% {opacity:0;}
    50% {opacity:1;}
    100% {opacity:0;}
}

@-o-keyframes fade {
    0% {opacity:0;}
    50% {opacity:1;}
    100% {opacity:0;}
}
