body {
    margin: 0;
    padding: 0;
    background-image: url('../assets/bg.jpeg');
    background-size: cover;
    background-repeat: repeat-y;
    background-position: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #fff;
}

h1 {
    text-align: center;
}

h3 {
    display: inline-block;
    position: relative;
    bottom: 8px;
}

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

table {
    border-collapse: collapse;
}

.border-right {
    border-right: 4px solid cyan;
}

.border-left {
    border-left: 4px solid cyan;
}

.border-top {
    border-top: 4px solid cyan;
}

.border-bottom {
    border-bottom: 4px solid cyan;
}

td {
    padding: 10px;
    width: 32px;
    height: 32px;
}

.circle {
    box-shadow: inset 0px 0px 7px #48e148, 0px 0px 7px #48e148;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 1px solid green;
}

.line-1 {
    box-shadow: 0px 0px 7px #ff79ff;
    position: absolute;
    width: 30px;
    height: 6px;
    background: purple;
    transform: rotate(45deg);
}

.line-2 {
    box-shadow: 0px 0px 7px #ff79ff;
    position: absolute;
    width: 30px;
    height: 6px;
    background: purple;
    transform: rotate(135deg);
}

#win {
    text-align: center;
    margin-top: 50px;
    font-size: 40px;
    font-family: ui-monospace;
}

.d-none {
    display: none;
}

.d-inline {
    display: inline;
}