*{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

@font-face {
    font-family: "graphikmedium";
    src: url(/assets/fonts/GraphikMedium.otf);
}

body{
    font-family: "graphikmedium";
    background: #f1faf1;
    height: 100vh;

}

main {
    margin-top: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.navbar {
    background: #f1f8ea;
    border-bottom: 0.7px solid rgb(219, 215, 215);
}



.middle 
{
    display: flex;
    gap:10vw;
}

.help-div {
    position: absolute;
    right: 10%;
    top: 6%;
    height: 12vh;
    width: 14vw;
    border-radius: 6px;
    font-size: 14px;
    padding: 8px;
    background: #ccf3d5;
    display: none;
}

/* Show .help-div when #help is hovered */
#help:hover + .help-div {
    display: block;
}


h1{
    font-weight: 500;
}

.sudoku-container{
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

table{
    border-collapse: collapse;
    border: 4px solid #000;
}

.cell{
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 20px;
    border: 1px solid #999999;
    transition: all 0.3s ease-in-out;
}

table tr:nth-child(3n) td,
table tr:nth-child(3n+3) td{
    border-bottom: 2px solid #000;
}

table td:nth-child(3n){
    border-right: 2px solid #000;
}

input{
    outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button{
    -webkit-appearance: none;
    margin: 0;
}

button{
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #0c5e10;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

button:hover{
    background-color: #044212;
}

.btn {
    margin: 20px;

    padding: 5px 10px;
    font-size: 16px;
    background-color: #086a0d;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.btn:hover {
    background-color: #044212;
}

.solved{
    background-color: #9ccc65;
    transition: all 0.2s ease-in-out;
}


.info {
    margin-inline: 10vw;
    margin-top: 6vh;
}

.about-sudoku {
    margin-top: 6vh;
}

.how-to-play {
    margin-top: 6vh;
}

.sudoku-tips {
    margin-top: 6vh;
}

li{
    margin-top: 8px;
}

.bullet-pts {
    padding: 14px;
    height: auto;
    width: 70vw;
    background: #c5f5c8;
    border-radius: 20px;
    margin: 2vh;
}

.disqus-wrapper {
    margin-top: 6vh;
    margin-inline: 11vw;
    width: 80vw;
}

.footer {
    margin-top: 8vh;
    height: 20vh;
    width: 100vw;
    background: #f1f8ea;
    padding-inline: 10vw;
}

.name{
    font-size: 2vw;
}
