html, body {
    background-color: #0d2a3b;
    font-family: Montserrat,"Helvetica";
}

nav {
    margin: 0 18px;
    max-height: 55px;
    display: flex;
    align-items: center;
    color: #f00;
}

nav img {
    height: 55px;
    margin-right: 12px;
}

.container, .options, .gameover{
    width: 450px;
    height: 450px;
}

.options, .gameover{
    position: absolute;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.container {
    margin: 50px auto 0;
    position: relative;
}

.options {
    z-index: 99;
    background: #0d2a3b;
    border: 1px solid #fff;
    border-radius: 4px;
    justify-content: center;
}

.gameover{
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: space-evenly;
}

.gameover h1{
    font-size: 32px;
    color: #fff;
}

.gameover .winner-img{
    display: block;
    margin: 0 auto;
}

#my-canvas{
    position: absolute;
    background: #fff;
    z-index: 9;
}

.options h2{
    font-size: 28px;
    letter-spacing: 1px;
    color: #fff;
}

button {
    border-radius: 4px;
    padding: 10px 20px;
    margin: 0 10px;
    color: #000;
    font-size: 18px;
    min-width: 150px;
    text-align: center;
    border: 1px solid #FFF;
    text-transform: capitalize;
    letter-spacing: 1px;
    cursor: pointer;
}

button:hover{
    background-color: #011627;
    color: #FFF;
}

.play{
    margin-top: 20px;
    border: 1px solid #011627;
    background-color: #011627;
    color: #FFF;
}
.play:hover{
    background-color: #FFF;
    color: #011627;
}

.gameover .play{
    background-color: #fff;
    color: #000;
}

.active{
    background-color: #011627;
    color: #FFF;
}

.hide{
    display: none;
}