﻿* {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    height: 100%;
    font-family: sans-serif;
    background-color: #1A1A2E;
    color: #F9F9F9;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

header {
    width: 100%;
    margin-top: 20px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.container {
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.row {
    display: flex;
    gap: 10px;
}

#strings-selector {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#instruction {
    font-weight: initial;
    font-size: 16px;
}

label input {
    margin-left: 10px;
}

p {
    font-weight: 700;
    font-size: 24px;
}

button {
    margin-top: 20px;
    padding: 8px 16px;
    border: 0;
    border-radius: 4px;
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    background-color: #E94560;
    color: inherit;
    box-shadow: 0 4px 4px #00000040;
    cursor: pointer;
}

.undisplayed {
    display: none;
}

.separator {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    height: 1px;
    background-color: #F9F9F9;
}

#credits {
    font-weight: initial;
    font-size: 12px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    #credits {
        font-size: 16px;
    }
}

a {
    color: inherit;
}

noscript {
    text-align: center;
    line-height: 24px;
}

.text-button {
    margin-top: 20px;
    padding: 0;
    font-size: 16px;
    text-transform: initial;
    background-color: initial;
    color: inherit;
    cursor: pointer;
}

#settings-panel {
    text-align: center;
}
