@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root{
    /* --primary: #2F27CE;
    --secondary: #DDDBFF;
    --text: #050316;
    --background: #FBFBFE;
    --accent: #BB987C; */

    /* --primary: #fd8f34;
    --secondary: #e6b994;
    --text: #191109;
    --background: #fefbfa;
    --accent: #e29658; */

    --primary: #fd8f34;
    --primary-hover: #e9802b;
    --secondary: #e6b994;
    --text: #191109;
    --background: #fefbfa;
    --accent: #e29658;
    
    --input-padding: 15px;
    --wrong: #ff5b5b;
    --wrong-hover: #ff2828;
    --good: #72e37f;
    --good-hover: #5ce46c;
}

* {
    color: var(--text);
    font-family: 'Inter', sans-serif;
    margin: 0;
}

html,
body {
    height: 100%;
    background-color: var(--background);
}

button {
    background-color: var(--primary);
    color: var(--text);
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 5px;
    font-size: 18pt;
    font-weight: 300;
    cursor: pointer;
    transition: background-color 0.1s ease-in-out;
}
button:hover {
    background-color: var(--primary-hover);
}

button.wrong {
    background-color: var(--wrong);
    color: var(--background);
}

button.wrong:hover {
    background-color: var(--wrong-hover);
}
button.good {
    background-color: var(--good);
    color: var(--background);
}

button.good:hover {
    background-color: var(--good-hover);
}

input {
    border-radius: 5px;
    border: solid var(--secondary) 2px;
    padding: var(--input-padding);
    font-size: large;
    margin-bottom: 20px;
    width: calc(100% - 2 * var(--input-padding) - 4px);
}