body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    background: #404258;
    color: #fff;
}

section {
    display: flex;
}

.snake-message {
    font-size: 30px;
    display: block;
    height: 60px;
    padding: 4px 0;
    margin: 0;
    text-align: center;
}

.snake-score {
    display: block;
    text-align: center;
    font-size: 22px;
    padding: 10px 0;
    margin-bottom: 10px;
}

.snake-cell {
    display: flex;
    border: 1px solid #cccccc;
    border-radius: 3px;
    transition: 100ms;
}

.snake-cell img {
    margin: auto;
}

.snake-head {
    background-color: green;
    border-radius: 6px;
}

.snake-body {
    background-color: greenyellow;
}

#snake-container {
    display: flex;
    flex-wrap: wrap;
    margin-right: 10px;
}

#snake-controls-form {
    display: flex;
    flex-direction: column;
}

.form__label {
    display: flex;
    flex-direction: column;
    margin: 20px 0;
}

.subtitle {
    font-weight: bold;
    font-size: 20px;
    padding: 10px 0;
}

.snake-wrapper {
    display: flex;
    margin: auto;
}

.controls {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.controls button {
    width: 115px;
}

.controls .label {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.controls select {
    padding: 5px;
}
