﻿.site-header {
    text-align: center;
    padding: 20px;
    color: black;
    width: 100%;
    margin: 0 auto;

}

.site-header nav a {
    margin: 0 15px;
    font-size: 25px;
    color: black;
    text-decoration: none;
}

.site-header nav a:hover {
    color: black;
    text-decoration: underline;
}

.game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
}

.container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.grid {
    height: 400px;
    width: 400px;
    display: flex;
    flex-wrap: wrap;
    background-color: #dcd6bc;
    /* margin-left: 50px;
    margin-top: 20px;
    margin-bottom: 10px; */
    margin: 20px auto;
    border: 10px solid #dcd6bc;
    
}

div {
    font-size: 25px;
    text-align: center;
    font-family: "Roboto Mono", monospace;
}

.valid,
.bomb {
    width: 40px;
    height: 40px;
    border: 5px solid;
    border-color: #f5f3eb #bab7a9 #bab7a9 #fff9db;
    box-sizing: border-box;
}

.checked {
    width: 40px;
    height: 40px;
    border: 2px solid #9c998d;
    box-sizing: border-box;
}

.one {
    color: #e76346 ;
}
.two {
    color: #4199d3 ;
}
.three {
    color: #57de59 ;
}
.four {
    color: #bb41d3 ;
}

#reset-btn {
    padding: 10px 20px;
    font-size: 20px;
    color: white;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
    background-color: #726a6a;
}

#reset-btn:hover {
    background-color: #241f1f;
}