* {
    font-family: 'Segoe UI', 'Arial', sans-serif;
}

body {
    background-color: #121212;
    color: #DBDBDB;
}

button {
    border: none;
    border-radius: 8px;
}

p {
    font-size: 18px;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.note-selection {
    display: flex;
    justify-content: center;
    align-items: center;
}

.note-button {
    background-color: gray;
    text-align: center;
    margin: 2px 4px;
    font-size: 14px;
    width: 65px;
    height: 35px;
    cursor: pointer;
}

.note-button:hover {
    background-color: #ffb703;
}

.note-button:active {
    background-color: #cea602;
}

.inactive-note {
    background-color: gray;
}

.active-note {
    background-color: #219ebc;
}

#note-guess-button {
    background-color: #ffb703;
    text-align: center;

    margin: 2px 4px;
    padding: 6px;

    font-size: 14px;

    cursor: pointer;

    min-width: 40px;
    height: 40px;
}

#note-guess-button:hover {
    background-color: #eaa501;
}

#note-guess-button:active {
    background-color: #c88e01;
}

#note-guesses {
    padding: 60px;
    min-height: 46px;
}

.control-button {
    background-color: #219ebc;
    text-align: center;

    margin: 2px 4px;
    padding: 6px;

    font-size: 14px;

    cursor: pointer;

    min-width: 100px;
    height: 40px;
}