/*
#header {
    display: flex;
    vertical-align: middle;
    text-align: center;
}
*/

html {
    background-color: #0e0e0e;
    color: #dfdfdf;
    font-family: 'Roboto', sans-serif;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.wrap {
    margin-left: auto;
    width: 1080px;
}
.flexbox__hero {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: center;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}
h2 {
    font-size: 24px;
    font-weight: 700;
}
h3 {
    font-size: 28px;
    font-weight: 700;
}

p {
    font-size: 14px;
    line-height: 18px;
}

.margin__bottom__24px {
    margin-bottom: 24px;
}

.margin__bottom__48px {
    margin-bottom: 48px;
}

main p {
    margin-left: 8px;
}
main h3 {
    margin-top: 35px;
}

.footer {
    background-color: #1f1d1d63;
    margin-top: 48px;
    padding: 24px;
    text-align: center;
    line-height: 24px;
    /* width: 100%; */
    left: 0;
    right: 0;
}

/* contact box */
main p span {
    width: 1080px;
    margin: auto;
}
main p span a {
    padding: 10px;
}

main p span:first-child() {
    padding-left: 0;
}

/* error sites */
#errorbox {
    margin-top: auto;
    display: block;
    text-align: center;
}
h2, h4 {
    padding: 3px;
    /* margin-top: auto; */
}
/* animated links */
a {
    text-decoration: none;
    color: #5be8ea;
}
a:hover {
    animation: linkhover 3s infinite;
}

/* secret link */
a#white {
    color: #fff;
}
#jebaitimg {
	display: none;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 20%;
	height: 100%;
	width: 60%;
/*	object-fit: cover; */
}

@keyframes linkhover {
    7.14%, 57.14% {color:#ff0000;}
    14.28%, 54.28% {color:#ff7f00;}
    21.42%, 71.42% {color:#ffff00;}
    28.57%, 78.57% {color:#00ff00;}
    35.71%, 85.71% {color:#0000ff;}
    42.85%, 92.85% {color:#4b0082;}
    50%, 100% {color:#8b00ff;}
}

/* mobile devices */
@media only screen and (max-width: 960px) {
    .wrap {
        width: 100%;
        padding: 0px 20px;
    }

    .flexbox__hero {
        text-align: center;
    }
}
