html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'Inconsolata', monospace;
    font-size: 10px;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#game {
    width: 312px;
    height: 312px;
}

button {
    outline: none;
    font-family: 'Inconsolata', monospace;
}

.game-field {
    height: 100px;
    width: 100px;
    background-color: #09b2cb;
    border: none;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    margin-left: 2px;
    margin-right: 2px;
    border-radius: 2px;
}

.game-field:hover {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

i {
    color: white;
}

.pop-in-screen {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 178, 203, 0.4);
    top: 0;
    left: 0;
}

#column {
    margin: auto;
    height: 85vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#actual-player-display {
    height: 40px;
    width: 312px;
}

#actual-player-symbol {
    color: black;
}

.selection-buttons-frame {
    margin-top: 10vh;
}

.selection-buttons {
    background-color: rgb(242, 27, 63);
    border: none;
    border-radius: 2px;
    width: 140px;
    margin-left: 16px;
    margin-right: 16px;
    font-size: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.selection-buttons:hover {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

#result {
    font-size: 20px;
    margin-top: 42vh;
}

#actual-player {
    font-size: 15px;
}

#game-icon {
    font-size: 20px;
}