body {
    background-color: #282C34;
    color: white;
}

a:link{
    color: white;
}

a:visited{
    color: white;
}

nav{
    background: #000;
    height: 36px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0
}

nav ul{
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 1200px;
}

nav ul li{
    position: relative;
    float: left;
    width: 25%;
    text-align: center;
}

nav ul li:hover ul{
    display: block;
}

nav ul li li{
    position: relative;
    float: none;
    width: 100%;
    border: none
}

nav ul li a{
    display: block;
    text-decoration: none;
    color: #ffffff;
    padding: 6px 25px;
    font-size: 1.2en;
}

nav ul li:hover a{
    background: #fff;
    color: #000;
    text-decoration: none;
    transition: 0.5s;
}

.container{
    width: 100%;
}  

.myBtn{
    width: fit-content;
    padding: 15px;
    border: 2px solid black;
    background-color: #333;
    color: #fff;
    text-align: center;
    margin: auto;
}

.myBtn:hover{
    background-color: #292929;
    color: white;
    cursor: pointer;
}

.row{
    display: flex;
    align-items: center;
    justify-content: center;
}

.cell{
    width: 60px;
    height: 80px;
    border: 0px solid black;
    position: relative;
    margin: 10px;
    
    background-image: url('../img/stick.png');
}

.cell.selected{
    background-image: url('../img/selectedStick.png');
}

.cell.used{
    background-image: url('../img/removedStick.png');
}

/* POPUP */
.outcome{
    position: absolute;
    background-color: rgba(128, 128, 128, 0.25);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.popup{
    position: absolute;
    background-color: #282C34;
    width: 300px;
    height: 200px;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}

.popupContent{
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    text-align: center;
    position: absolute;
}