.none {
    display: none;
}

body {
    position: absolute;
    height: 100%;
    width: 100%;
    margin: 0 0 0 0;
    display: flex;
    justify-content: center;
}

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

.center > * {
    position: relative;
}

.turn-count {
    margin: 0 0 0 0;
    margin-bottom: 15px;
}

.message {
    margin: 0 0 0 0;
    margin-top: 10px;
    padding-bottom: 12px;
}

.reload-btn {
    padding: 8px 8px 8px 8px;
    border: solid black 2px;
    border-radius: 5px;
    background-color: rgb(45, 171, 255);
    margin-top: 5px;
}

.reload-btn > svg {
    height: 10px;
}

.reload-btn:hover {
    cursor: pointer;
}

.reload-btn:focus {
    border: solid grey 2px;
}

.container {
    display: grid;
    grid-template-columns: 65px 65px 65px;
}

.child {
    margin: 5px 5px 5px 5px;
    height: 50px;
    width: 50px;
    border: solid;
    position: relative; 
    transition: all 200ms;
}

.child > img {
    width: 100%;
    height: 100%;
}

.child:hover {
    cursor: pointer;
    border-color: grey;
}