*,
after,
before {
    box-sizing: border-box;
}

html {
    height: 100%;
    overflow: hidden;
}

body {
    height: 100%;
}

.game {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.numbers {
    width: 100%;
    display: flex;
    gap: 1rem;
    position: relative;
    height: 200px;
}

.number {
    border: 2px #aeadad solid;
    border-radius: 6px;
    width: 40px;
    height: 40px;
    font-size: 28px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.field-1 {
    right: 12rem;
}

.field-2 {
    right: 4rem;
}

.field-3 {
    left: 4rem;
}

.field-4 {
    left: 12rem;
}

.field-5 {
    top: 2rem;
    left: 20rem;
}

.field-6 {
    top: 6rem;
    left: 20rem;
}

.field-7 {
    top: 8rem;
    left: 12rem;
}

.field-8 {
    top: 8rem;
    left: 4rem;
}

.field-9 {
    top: 8rem;
    right: 4rem;
}

.field-10 {
    top: 8rem;
    right: 12rem;
}

.field-11 {
    top: 6rem;
    right: 20rem;
}

.field-12 {
    top: 2rem;
    right: 20rem;
}

.controls {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.controls button {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    height: 40px;
    width: 112px;
    font-size: 16px;
    font-weight: bold;
    touch-action: manipulation;
}

.status {
    margin-top: 1rem;
    font-size: 20px;
    font-weight: bold;
}