/* Palette:
Core:
#efefdf
#102030
#203040

Accents: 
#ff4466
#5577ff
#eecc33
#33cc66 */

body {
    background: #efefdf;
    font-family: "Inconsolata", monospace;
    font-optical-sizing: auto;
    font-weight: 300; /*200-900*/
    font-style: normal;
    font-variation-settings: "wdth" 100; /*50-200*/
    color: #102030;
}

/*Generics*/

h1 {
    max-width: 24ch;
    font-size: 2em;
    font-weight: 100;
    font-variation-settings: "wdth" 125; /*50-200*/
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-align: center;
}

h2 {
    padding: 0 10%;
    text-align: center;
    font-size: 1.6em;
    font-weight: 400;
    font-variation-settings: "wdth" 110; /*50-200*/
    letter-spacing: 0.1em;
    text-wrap: balance;
}

p {
    padding: 0 10%;
    font-variation-settings: "wdth" 105; /*50-200*/
    font-feature-settings: "dlig";
    letter-spacing: 0.05em;
    line-height: 1.25em;
}

a:link {
    color: #ff4466;
    text-decoration: none;
    font-weight: 600;
    transition: 1s;
    overflow-wrap: break-word;
    word-break: break-word;
}

a:link:hover {
    color: #efefdf;
    font-size: 1.1em;
}

/*Classes*/

.copy {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    padding: 0 5%;
}

.copy h2, .copy p, .inset{
    box-sizing: border-box;
}

@media (orientation: landscape) {
    .copy h2 {
        width: 33.3%;
        padding: 0 2em 2em 5%;
    }
    
    .inset {
        width: 66.6%;
        padding: 0 5% 2em 2em;
    }
    a:link {
        font-variation-settings: "wdth" 110; /*50-200*/
        letter-spacing: 0.2em;
    }
    h1 {
        max-width: 30ch;
    }
}

.green {
    color: #33cc66
}

.red {
    color: #ff4466;
}

.blue {
    color: #5577ff;
}

.yellow {
    color:#eecc33;
}

.bold {
    font-weight: 600;
}

/*ID*/

#video {
    display: block;
    Max-width: 1920px;
    margin: 0 auto;
    padding: 0;
}

#header {
    margin: 20% 0 5% 0;
}

#footer {
    color: #eecc33;
    display: block;
    margin: 0 auto;
    text-align: center;
    font-size: 0.8em;
    font-weight: 600;
    letter-spacing: 0.2;
    text-transform: uppercase;
    bottom: 1em;
    transition: 1s;
}

#under-construction {
    position: fixed;
    bottom: 2em;
    right: 3em;
    z-index: 5;
    width: 5em;
    height: 5em;
    border-radius: 5em;
    padding: 1em;
    background: #203040;
    color: #5577ff;
    font-size: 0.8em;
    font-weight: 900;
    letter-spacing: 0.3em;
    font-variation-settings: "wdth" 80; /*50-200*/
    text-transform: uppercase;
    text-align: center;
    align-content: center;
    transition: 0.5s;
    animation: under-construction 3s 10s infinite;
}

#under-construction:hover {
    opacity: 0;
}

@keyframes under-construction {
    0% {
        bottom: 2em;
    }
    50% {
        bottom: 2.25em;
    }
    100% {
        bottom: 2em;
    }
}
