:root {
    --background: linear-gradient(#0064FF, #00083e);
    --foreground: white;
}

/** GENERAL **/

@font-face {
    font-family: 'Outfit';
    src: url("./assets/fonts/outfit.ttf");
}

body {
    background: var( --background );
    padding: 10%;
    font-family: 'Outfit', sans-serif;
}

.app-logos {
    width: 100%;
}

/** GO TO APP **/

.go-to-app {
    display: none;
    color: var( --foreground);
    font-size: 1.5em;
    text-align: center;
}

.go-to-app .ios-app-button {
    width: fit-content;
    position: relative;
    background: #14b800;
    border-radius: 1em;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1em;
    height: 2em;
    font-size: 1.5em;
    line-height: 2em;
    margin-bottom: 1em;
    text-align: center;
    margin-top: 0.5em;
}

/** APP LOGOS **/

.app-logos {
    margin: 1em 0;
}

.app-logos * {
    width: 49%;
    height: auto;
    display: inline-block;
}

.app-logos img {
    width: 100%;
    filter: drop-shadow(0px 4px 20px rgba(0,0,0,.4));
}

/** LOGO **/

.logo-mockup {
    width: 100%;
    text-align: center;
}

.logo-mockup * {
    display: inline-block;
}

.logo {
    width: 100%;
    text-align: center;
}

.mockup {
    width: 100%;
    text-align: left;
    height: 100%;
    /* background: radial-gradient(white 50%, transparent 0); */
}

.mockup img {
    filter: drop-shadow(20px 18px 35px rgba(0,0,0,.4) );
}

.mockup *,
.logo * {
    width: 100%;
}

.col.mock {
    display: none;
    flex: .5;
}

/** CONTENT **/

.main {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.col {
    text-align: center;
}

.content {
    font-size: 1.5em;
    padding: 0 3% 3% 3%;
    color: var( --foreground );
}

.helptext {
    font-size: .75em;
    opacity: .8;
}

.instructions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    margin: 0em 0;
}

.audio {
    margin: 2em 0;
}

.text {
    width: 100%;
}

.text p {
    margin: 0.5em 0;
}

/** POWERED BY **/

.powered-by {
    position: relative;
    color: var( --foreground );
    text-align: left;
    font-size: 4em;
    /* top: 0; */
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    height: auto;
    display: block;
}

.powered-by img {
    width: 2em;
}

/** PRIVACY **/

.privacy {
    position: fixed;
    bottom: 1em;
    left: 2em;
    font-size: 1em;
}

.privacy p {
    color: white;
}

/** LANGUAGE **/

.language-wrapper {
    position: fixed;
    right: 1em;
    bottom: 0;
    background: rgba(255,255,255,.1);
    border-top-left-radius: 1em;
    border-top-right-radius: 1em;
}

.language-wrapper:hover .lang-sel a {
    /* color: black; */
}

.lang-sel a {
    text-decoration: none;
    text-transform: uppercase;
    margin: 0;
    padding: 10px;
    text-align: left;
    font-family: Raleway;
    color: white;
    font-size: 15px;
    font-weight: 700;
    line-height: 24px;
    display: block;
}

.lang-sel a:hover {
    text-decoration: none;
    background-color: #0064FF;
    color: #ffffff;
}

.lang-sel a.selected {
    background-color: transparent;
}

.lang-sel a img {
    display: inline-block;
    width: 1.5em;
    margin-right: 0.25em;
}

.hidden {
    display: none;
}

.lightblue {
    color: white;
    margin-left: 0px;
}

.show-sel {
    box-shadow: -5px 0px 65px 0px rgba(0, 0, 0, 0.18);
}

.lang-sel {
    margin: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    line-height: 5em;
}


/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

    .logo {
        width: 80%;
    }

    .content {
        text-align: left;
        font-size: 2em;
    }

    .app-logos * {
        width: 30%;
    }

    .col.mock {
        display: block;
        flex: .5;
    }

    .col {
        flex: 0.7;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (max-width: 700px) {
    audio {
        height: 1.5em;
    }
}

