:root {
    --background-color: hsl(215, 100%, 98%);
    --font-family: 'Satoshi', sans-serif;
    --hint-colour: hsl(0, 0%, 69%);
    --item-background: hsl(0, 0%, 100%);
    --hover-colour: hsl(0, 0%, 96%);
    --select-colour: hsl(0, 0%, 92%);
}

.Text {
    font-family: var(--font-family);
}

.Hint {
    color: var(--hint-colour);
}

.InputBox {
    scale: 1.5;
    border: none;
    border-radius: 0.4rem;
    background-color: var(--item-background);
    transition: 0.3s;
}

.InputBox:hover {
    background-color: var(--hover-colour);
}

.InputBox:focus {
    outline: none;
    background-color: var(--select-colour);
}

.Button {
    scale: 1;
    border-radius: 0.4rem;
    border: none;
    background-color: var(--item-background);
    transition: 0.3s;
    font-size: 2em;
    width: 10em;
    height: 3em;
}

.Button:hover {
    background-color: var(--hover-colour);
}

.Button:active {
    background-color: var(--select-colour);
}

body {
    background-color: var(--background-color);
}

#TitleImage {
    width: 8em;
    position: fixed;
}

#CenterContent {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    position: fixed;

    left: 50vw;
    top: 40vw;
    transform: translate(-50vw, -40vw);

    background-color: hsla(0, 0%, 0%, 0);

    width: 100%;
    height: 100%;
}

#WordsContainer {
    display: flex;
    height: 60%;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
}

.Word {
    display: inline-block;
    background-color: white;
    font-size: 5em;
    margin: 0.2em;
    padding: 0.1em;
    border-radius: 0.4em;
    scale: 0%;
    transition: all 400ms cubic-bezier(.47,1.64,.41,.8);
}