*,
*::after,
*::before {
    box-sizing: border-box;
}

:root {
    font-size: 15px;
}

body #cdawrap {
    --cda-right: 2rem;
    --cda-top: 2rem;
}

.demo-2 #cdawrap {
    --cda-text-color: #fff;
    --cda-sp-color: #fff;
}

body {
    --color-text: #9c814f;
    --color-bg: #111111;
    --color-link: #0a8dbb;
    --color-link-hover: #fff;
    --color-info: #5a5757;
    color: var(--color-text);
    background-color: var(--color-bg);
    font-family: 'IBM Plex Mono', monospace;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
}

.demo-2 {
    --color-text: #fff;
    --color-bg: #2d40f8;
    --color-link: #78e7f6;
    --color-info: #1e2ba8;
}

.demo-1 {
    --color-text: #ff0000;
    --color-bg: #2d40f8;
    --color-link: #78e7f6;
    --color-info: #1e2ba8;
}

.hidden {
    display: none;
}

/* Page Loader */
.js .loading::before {
    content: '';
    position: fixed;
    z-index: 100000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
}

.js .loading::after {
    content: '';
    position: fixed;
    z-index: 100000;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    pointer-events: none;
    border-radius: 50%;
    opacity: 0.4;
    background: var(--color-link);
    animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
    to {
        opacity: 1;
        transform: scale3d(0.5, 0.5, 1);
    }
}

a {
    text-decoration: none;
    color: var(--color-link);
    outline: none;
}

a:hover,
a:focus {
    color: var(--color-link-hover);
    outline: none;
}

.message {
    background: var(--color-text);
    color: var(--color-bg);
    padding: 1rem;
    text-align: center;
}

.frame {
    padding: 3rem 5vw;
    text-align: center;
    position: relative;
    z-index: 1000;
}

.frame__title {
    font-size: 1rem;
    margin: 0 0 1rem;
    font-weight: normal;
}

.frame__links {
    display: inline-block;
    margin: 1rem 0;
}

.frame__info {
    display: inline-block;
    margin: 0 2rem;
    color: var(--color-info);
}

.frame a {
    text-transform: lowercase;
}

.frame a::before {
    content: '_';
}

.frame__demo--current,
.frame__demo--current:hover {
    color: var(--color-text);
}

.content {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: calc(100vh - 13rem);
    position: relative;
    justify-content: flex-start;
    align-items: center;
}

@media screen and (min-width: 53em) {
    .message {
        display: none;
    }

    .frame {
        position: fixed;
        text-align: left;
        z-index: 10000;
        top: 0;
        left: 0;
        display: grid;
        align-content: space-between;
        width: 100%;
        max-width: none;
        height: 100vh;
        padding: 3rem;
        pointer-events: auto;
        grid-template-columns: 75% 25%;
        grid-template-rows: auto auto auto;
        grid-template-areas: 'title ...' '... ...' 'links demos';
    }

    .frame__title-wrap {
        grid-area: title;
        display: flex;
    }

    .frame__title {
        margin: 0;
    }

    .frame__tagline {
        position: relative;
        margin: 0 0 0 1rem;
        padding: 0 0 0 1rem;
        opacity: 0.5;
    }

    .frame__demos {
        display: flex;
        flex-direction: column;
        margin: 0;
        grid-area: demos;
        justify-self: end;
        align-self: end;
    }

    .frame__links {
        display: flex;
        flex-direction: column-reverse;
        grid-area: links;
        justify-self: start;
        align-self: end;
        margin: 0;
    }

    .frame a {
        pointer-events: auto;
        margin: 0.25rem 0 0 0;
    }

    .content {
        height: 100vh;
        justify-content: center;
    }
}
