.root {
    -fx-font-size: 12px;
}

.container {
    -fx-spacing: 2em;
    -fx-pref-width: 30em;
    -fx-pref-height: 20em;
}

.button,
.radio-button {
    -fx-min-width: 17em;
    -fx-pref-width: 17em;
    -fx-max-width: 17em;

    -fx-min-height: 3em;
    -fx-pref-height: 3em;
    -fx-max-height: 3em;
}

.button .text,
.radio-button .text{
    -fx-font-size: 1.5em;
}

.radio-button {
    -fx-border-color: red;
} 