* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

body {
    background-color: #0E0E0E;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contanier {
    background-color: #151515;
    border: 2px solid #C75C2A;
    padding: 30px;
    border-radius: 20px;
}

header {
    color: white;
    font-size: 20px;
    font-weight: bold;
}

#note {
    font-size: 20px;
    color: #dfd400;
    text-align: center;
    margin: 5px 0 10px;
}

.input-field {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.input-field input,
.input-field button {
    width: 48%;
    height: 60px;
    border-radius: 10px;
}

.input-field input {
    border: 2px solid #C75C2A;
    text-align: center;
    font-size: 20px;
    outline: none;
    color: white;
    background-color: #1C1C1C;
}

.input-field input:disabled {
    cursor: not-allowed;
    border-color: green;
}

.input-field button {
    border: none;
    background-color: #C75C2A;
    font-size: 20px;
    color: white;
    cursor: pointer;
    transition: 0.2s;
}

.input-field button:hover {
    background-color: #E07A3F;
}

.input-field button:active {
    transform: scale(0.96);
}

.contanier p:last-of-type {
    margin-top: 10px;
    text-align: center;
    font-size: 20px;
    color: #777;
}

#chances {
    color: #dfd400;
}