html,
body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

body {
    min-height: 100vh;
    /* mobile viewport bug fix */
    min-height: -webkit-fill-available;
}

html {
    height: -webkit-fill-available;
}

#loggedinContainer {
    font-size: 0.7em;
    margin: 10px;
}

.logo {
    max-width: 200px;
    width: 50%;
}

.logo img {
    max-width: 100%;
}

.content {
    width: 100%;
    max-width: 400px;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
}

h1.app-details {
    font-size: 1.8em;
    margin: 0;
}

.section-wrapper {
    margin: 20px 0;
}

select {
    font-size: 1.3em;
    padding: 15px;
    background: inherit;
    border: 2px solid;
    color: inherit;
}

.error {
    font-weight: bold;
    margin: 20px 0;
}

.download-icon {
    background: url("../images/download.svg");
    display: block;
    width: 64px;
    height: 64px;
    margin: 16px auto 0;
}

a.download-link {
    border: 2px solid;
    padding: 20px 40px;
    border-radius: 10px;
    display: block;
    color: inherit;
    text-decoration: none;
    text-align: center;
    margin: 20px 0;
}

a.download-link#hover {
    color: inherit;
}

textarea {
    background-color: inherit;
    color: inherit;
    border-radius: 5px 5px 0 5px;
    border: 2px solid;
    width: 300px;
    height: 100px;
}

.available-codes {
    display: block;
    margin: 20px;
    font-size: 0.8em;
}

.help {
    max-width: 400px;
    text-align: center;
    color: inherit;
    font-size: 0.8em;
    margin: 0;
    padding: 0 16px 8px 16px;
    align-self: flex-end;
}

.error a {
    font-weight: normal;
    font-size: 0.8em;
}

a {
    text-decoration: none;
}

.hide {
    display: none;
}
