html, body {
    background-color: rgba(26,32,44,1);
    color: #eee;
    font-family: 'Nunito', sans-serif;
    font-weight: 200;
    margin: 0;
}

.title {
    font-size: 24px;
}

.subtitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.links > a {
    color: #afafaf;
    padding: 0 15px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .05rem;
    text-decoration: none;
    text-transform: uppercase;
}

.links > a:hover {
    color: #000;
}

.stores {
    margin-bottom: 40px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

.stores img {
    margin-bottom: 10px;
}

.stores img.apple {
    max-width: 160px;
    width: 160px;
    margin-right: 20px;
}

.stores img.google {
    max-width: 180px;
    width: 180px;
}

.copyright {
    width: 450px;
    margin: 15px auto 0px auto;
    padding: 0 25px;
    padding-top: 18px;
    font-size: 10px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    border-top: 1px solid #a8a8a8;
}

.subcontent {
    width: 100%;
    overflow-y: hidden;
    text-align: left;
    padding: 0px;
    border-radius: 8px;
    height: 0px;
    max-height: 400px;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.subcontent.active {
    height: 400px;
    padding: 10px;
    border: 1px solid #a8a8a8;
    margin: 15px auto 30px auto;
    overflow-y: scroll;
}

.subcontent.active.contentContainerContact {
    text-align: center;
    border: 0 !important;
    overflow-y: hidden !important;
}

.contentContainer {
    position: relative;
}

.contentContainer .closeButton {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 20px;
    height: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
}

.redBorder {
    background-color: #ffc7c7;
}

.languageContainer {
    width: 450px;
    margin: 10px auto;
    text-align: right;
    color: #afafaf;
}

.languageFlag {
    max-height: 15px;
    cursor: pointer;
    opacity: 0.5;
    margin: 0px 10px;
}

.languageFlag:hover {
    opacity: 1;
}

@media (prefers-color-scheme: dark) {
    html, body {
        background-color: rgba(26,32,44,1);
        color: #eee;
    }

    .links > a {
        color: #bbb;
    }

    .links > a:hover {
        color: #fff;
    }

    .copyright {
        border-top: 2px solid #a8a8a8;
    }
}

