@import url('https://lobster-app-3sov3.ondigitalocean.app/nova-api/styles/suneditor');
@import url('https://fonts.cdnfonts.com/css/futura-lt-pro-3');
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');

body, p, h1, h2, h3, h4, h5, h6, input, textarea, label, select, button, a, ul, li, div, strong, .sun-editor-editable, .sun-editor-editable.div {
    font-family: "Source Serif 4", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.02em;
}

strong {
    font-weight: 400;
    font-size: inherit;
}

h1 {
    font-weight: 500;
    font-style: normal;
    font-size: 54px;
    line-height: normal;
    letter-spacing: 0.02em;
}

h2 {
    font-weight: 400;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
    font-style: italic;
}

ul li h2 {
    margin-bottom: 0;
}

h6 {
    font-weight: 400;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
    font-style: italic;
    background-image: url("/img/text-h6-devider.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    padding-bottom: 38px;
    background-size: 100% 12px;
    display: inline-block;
    width: auto;
}

h2 b, h2 strong {
    font-weight: 300;
}

h2 em {
    font-style: normal;
}

h3 {
    font-weight: 400;
    font-style: normal;
    font-size: 26px;
    line-height: 32px;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
}

h4 {
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 4px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

span {
    font-weight: 300;
    font-style: normal;
    font-size: 10px;
}

/* Base CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #dba514;
}

div ul li {
    /*list-style: inside;*/
}

html a {
    color: #00d8ff;
    word-wrap: break-word;
}

a:hover {
    color: white;
}

li a:hover {
    color: #00d8ff;
}

body {
    background-color: #000;
    color: #dba514;
    padding: 0;
    min-width: 100vw;
    min-height: 100vh;
}

.container {
    display: flex;
    /*justify-content: center;*/ /* center horizontally */
    align-items: center;     /* center vertically */
    flex-direction: column;  /* optional, in case you add more elements */
    margin: 0 auto;
    background-image: url(img/splash.png);
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    min-width: 100vw;
    min-height: 100vh;
    font-size: 2.6vh;
}

.container a.menu
{
    display: block;
    position: fixed;
    left: 15px;
    top: 15px;
    font-size: 42px;
    color: #dba514;
    text-decoration: none;
    border: none;
}

.block {
    display: block;
    margin: auto;
    max-width: 1300px;
    width: calc(100% - 20px);
    padding: 8px;
}

.block figure {
    margin: auto;
    padding-bottom: 0 !important;
}

.block img {
    margin: 2px 10px 2px 10px;
    transition: opacity 1s ease-in-out;
    position: static;
    max-width: 95%;
    height: auto;
}

.block clear {
    float: none;
    clear: both;
}

.block div p {
    padding: 0 0 12px 0;
}

ul {
    list-style: none;
    margin: auto;
    padding: 0;
    width: 90vw;
    max-width: 500px;
}

li {
    margin: 0;
    padding: 0;
}

li a {
    text-decoration: none;
    color: #dba514;
    padding: 4px 4px 4px 4px;
    display: block;
    transition: background-color 0.3s ease;
    line-height: 26px;
    background-color: rgba(0,0,0,.2);
    text-align: center;
}

li a span {
    color: #dba514;
    opacity: 0.7;
}

li a:hover {
    /*color: #dba514;*/
    /*background-color: rgba(255,255,255,.2);*/
}

footer {
    clear: both;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    margin-bottom: 50px;
}

@keyframes fadeInUp {
    0% {
        opacity: 0.01;
    }
    20% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeInUpLater {
    0% {
        opacity: 0.01;
    }
    73% {
        opacity: 0.01;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeUp {
    0% {
        transform: translateY(200vh);
    }
    50% {
        transform: translateY(100vh);
    }
    100% {
        transform: translateY(0vh);
    }
}

@keyframes fadeUp2 {
    0% {
        transform: translateY(200vh);
    }
    50% {
        transform: translateY(200vh);
    }
    100% {
        transform: translateY(0vh);
    }
}

fieldset {
    border: none;
}

label {
    display: inline-block;
    min-width: 120px;
    padding: 10px;
    vertical-align: top;
}

label.checkbox-item {
    display: block;
}

label span {
    font-size: 18px;
    line-height: 28px;
    display: block;
    padding-left: 30px;
    margin-top: -30px;
}

button {
    display: inline-block;
    background-color: #dba514;
    color: #00d8ff;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
}

input, textarea {
    background-color: #ccc;
    padding-left: 6px;
    border: solid 1px #ccc;
}

.fadeUp-animation {
    animation: 3s fadeUp;
}

.fadeUp-animation-slow {
    animation: 10s fadeUp;
}

.fadeUp-animation-slower {
    animation: 15s fadeUp2;
}

.fadeInUp-animation-fast {
    animation: 1s fadeInUp;
}

.fadeInUp-animation {
    animation: 3s fadeInUp;
}

.fadeInUp-animation-slow {
    animation: 9s fadeInUp;
}

.fadeInUp-animation-slowest {
    animation: 19s fadeInUpLater;
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

.html {
    margin: 10px 0 0 30px;
    float: left;
    width: calc(50% - 30px);
    padding-top: 150px;
}

figure iframe {
    width: 100%;
    height: auto !important;
    min-height: 300px !important;
    padding-bottom: 0 !important;
}

@media only screen and (max-width: 500px) {

    .desktop {
        display: none;
    }
    .mobile {
        display: block;
    }
    h1 {
        font-size: 34px;
        line-height: 44px;
    }
    .html {
        margin: 10px;
        float: none;
        width: calc(100% - 20px);
        padding-top: 140px;
    }
    .block img {
        margin: 2px 10px 2px 2px;
        transition: opacity 1s ease-in-out;
        position: relative;
        z-index: 1;
    }
    .button-bottom {
        z-index: 2;
    }
}