body {
    font-family: "Fira Sans", sans-serif;
}
h1,h2,h3,h4 {
    font-family: "Fira Sans", sans-serif;
}
a {
    text-decoration: none;
    color: #C8C8C8;
    transition: color 0.2s linear;
}

a:hover {
    cursor: pointer;
    color: #FBC901;
}

main {
    display: flex;
    margin-top: 20px;
}

.hidden {
    display: none;
}

#word-hunt-board {
    display: grid;
    justify-content: center;
    grid-template-rows: repeat(4, 80px); 
    grid-template-columns: repeat(4, 80px);
    grid-gap: 10px;
    margin: 10px;
    padding: 10px;
}
@media (max-width: 768px) {
    #word-hunt-board {
        grid-template-rows: repeat(4, 75px);
        grid-template-columns: repeat(4, 75px);
    }
}
.header-content {
    background: #F0EBE3;
}
.letter-box {
    text-align: center;
    font-size: 25px;
    font-family: "Fira Sans", sans-serif;
    font-weight: 500;
    text-transform: capitalize;
    background-color: #f8f9fa;
    border-color: black;
    border-radius: 5px;
    transition: background-color 0.05s linear;
}

#buttons {
    display: flex;
    justify-content: center;
}

#clear-button:hover , #solve-button:hover {
    cursor: pointer;
}

.form-container {
    max-width: 350px;
    margin: 0px auto;
}
#solutions {
    height: 410px;
    padding: 20px;
    overflow-y: scroll;
    overflow: auto;
    background-color: #fafafa;
    border: 2px solid #dee2e6;
    border-radius: 5px;
}

.solution {
    margin: 5px;
    font-family: "Fira Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.1s linear;
}

.solution:hover {
    color: var(--bs-danger);
    cursor: pointer;
}

.content {
    max-width: 850px;
    margin: 0px auto;
}
.content ul {
    margin: 10px 0 10px 25px;
    line-height: 27px;
    list-style: inside;
    position: relative;
    margin-bottom: 20px;
    padding: 0;
}
.content ul li {
    border-bottom: 1px solid #eeeeee;
    list-style: none;
    padding: 10px 10px 10px 40px;
    margin-left: -23px;
}
.content ul li:before {
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIiB2aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGZpbGw9Im5vbmUiIHN0cm9rZT0iY3VycmVudENvbG9yIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMS41IiBkPSJNMyAxMmMwLTQuMjQzIDAtNi4zNjQgMS4zMTgtNy42ODJDNS42MzYgMyA3Ljc1OCAzIDEyIDNjNC4yNDMgMCA2LjM2NCAwIDcuNjgyIDEuMzE4QzIxIDUuNjM2IDIxIDcuNzU4IDIxIDEyYzAgNC4yNDMgMCA2LjM2NC0xLjMxOCA3LjY4MkMxOC4zNjQgMjEgMTYuMjQyIDIxIDEyIDIxYy00LjI0MyAwLTYuMzY0IDAtNy42ODItMS4zMThDMyAxOC4zNjQgMyAxNi4yNDIgMyAxMloiLz48L3N2Zz4=);
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    margin-top: 5px;
    background-size: contain;
    left: -18px;
}
.content ol {
    counter-reset: listNumbering;
    margin-bottom: 20px;
    padding: 0;
}
.content ol li {
    font-size: 1em;
    counter-increment: listNumbering;
    padding: 10px 10px 10px 40px;
    list-style: none !important;
    border-bottom: 1px solid #eeeeee;
}
.content ol li:before {
    content: counter(listNumbering, decimal-leading-zero) '.';
    font-size: 1em;
    font-weight: 600;
    padding-right: 15px;
    margin-left: -35px;
}