* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;    
}
:root {
    --sm: 12px;
    --md: 16px;
    --lg: 32px;
}

body {
    font-family: "Quicksand", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 94dvw;
    height: 100vh;
    padding-top: 16px;
    margin: auto;
    font-size: 1.1rem;
}

.light-mode {
    background-color: papayawhip;
    color: salmon;
}

.dark-mode {
    background-color: #4e4646;
    color: #2ec9ec;
}

.Logo {
    width: 240px;
    margin: auto;
    margin-bottom: 16px;
}

header {
    text-align: center;
}

.navbar-icons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 260px;
    font-weight: bold;
    padding-bottom: 4px;
}

.mode-button {
    color: black;
    padding: 2px;
}

.navbar {
    display: flex;
    justify-content:space-between;
    align-items: center;
    width: 260px;
    font-weight: bold;
    padding-bottom: 16px;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0px;
    padding: 0px;
    justify-content: flex-end;
}

nav ul li {
    margin-left: 4px;
    margin-right: 4px;
}

nav ul li a, nav span a {
    text-decoration: none;
}

.userName {
    margin-left: 12px;
}

.attemptsUser {
    margin-right: 10px;
}

main {
    width: 260px;
    height: auto;
    text-align: center;
}

.name-request {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.name-label {
    font-weight: bold;
}

.message-label {
    color: #fd4c13;
    font-weight: bold;
}

.name-user {
    width: 92%;
    height: 28px;
    font-family: "Quicksand", sans-serif;
    font-weight: bold;
    text-align: center;
    margin-top: 8px;
    font-size: 1.1rem;
}

button {
    font-family: "Quicksand", sans-serif;
    font-weight: bold;
    padding: 2px;
    font-size: 1rem;
}

.number-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    text-align: center;
    display: none;
}

.number {
    width: 56px;
    height: 56px;
    border-radius: 4px;
    border: #4ba1a0;
    font-family: "Quicksand", sans-serif;
    font-weight: bold;
    font-size: var(--lg);
    text-align: center;
    margin: 0px;
    padding: 0px;
}

.play-button, .button-name {
    text-align: center;
    padding: 8px;
}

.play-button {
    display: none;
}

.logGame {
    white-space: pre-line;
    font-weight: 400;
}

.winningTitle {
    font-weight: bold;
    font-size: var(--lg);
    font-family: "Quicksand", sans-serif;
}

.winningMessage {
    font-weight: 650;
    font-family: "Quicksand", sans-serif;
    white-space: pre-line;
    font-size: 20px;
}

.replay-button {
    display: none;
}

.TopTen {
    width: 100%;
    text-align: center;
}

.helpText {
    text-align: left;
    display: none;
}

.PlayFromHelp {
    text-align: center;
}

.footerText {
    text-align: center;
    font-family: "Quicksand", sans-serif;
    font-size: var(--sm);
    position: fixed;
    bottom: 0;
}

.cleanButton {
    margin-left: 16px;
}

/*
 display: none;
*/

.menu-language-full {
    position: relative;
    top: 4px;
    left: 140px;
    border-radius: 4px;
    z-index: 150;
    border: 1px solid salmon;
    width: fit-content;
    display: none;
}