:root {
    --primary: #C73A3A;
    --secondary: #A73A3A;
    --background: #302A2A;
    --border: #8E7373;
    --text: #F1F1F1;
    --button-text: #F1F1F1;
    --sub-text: #8E7373;
    --font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;

    --border-radius: 10px;
    --padding: 10px;
    --widget-height: 45px;
}

html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0px;
    font-family: var(--font-family);
    color: var(--text);
}

button {
    background-color: var(--primary);
    border-radius: var(--border-radius);
    color: var(--button-text);
    outline: none;
    border: none;
    height: 40px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    width: 100%;
    transition: filter 0.3s ease;
}

button:hover {
    filter: brightness(90%);
}

button:active {
    filter: brightness(80%);
}

ul {
    margin: 0px;
}

li {
    margin-top: 20px;
}

code {
    font-size: x-large;
}

h2 {
    margin-top: 30px;
    margin-bottom: 0px;
}

.app {
    height: 100%;
}

.page {
    width: 100%;
    background-color: var(--background);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%; 
    min-height: 100vh;
}

.page2 {
    background: #403737;
    color: #F1F1F1;
    height: fit-content;
}

.content {
    height: 100%;
    width: 100%;
    max-width: 1000px;
    padding: 15px;
    box-sizing: border-box;
}

.demo-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auslan-container {
    height: 100%;
    max-height: 750px;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5px;
}

.header {
    margin: 0px;
}

.divider-container {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-block: 10px;
}

.divider {
    height: 1px;
    background-color: var(--border); 
    flex: 1;
}

.display-name {
    color: var(--border);
    margin: 0px;
}

.theme-btn {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: filter 0.3s ease;
    cursor: pointer;
}

.theme-btn:hover {
   filter: brightness(90%); 
}

.theme-btn:active {
   filter: brightness(80%); 
}

.theme-icon {
    width: 25px;
    height: 25px;
    filter: invert(1);
    user-select: none;
}

.title {
    margin: 0px;
}

.bolder-title {
    color: var(--primary);
}

.subscript {
    font-size: smaller;
    color: var(--border);
    margin: 2px;
}

.sign-in-container {
    width: 100%;
    max-width: 400px;
    height: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.sign-in-title {
    margin-inline: 10px;
    text-align: center;
}

.sign-in-input {
    border-radius: var(--border-radius);
    background-color: var(--background);
    border: 1px solid var(--border);
    outline: none;
    color: var(--text);
    padding-inline: 15px;
    height: 40px;
    transition: border 0.3s ease;
}

.sign-in-input:focus {
    border: 1px solid var(--primary);
    outline: none;
}

.err-msg {
    color: #db3434;
}

.big-err {
    font-size: larger;
}
