body{
    margin: 0;
    padding: 0;;
}
#main-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 300px;
    margin: 5px auto;

}

.sub-box {
    width: 100%;
    height: 30px;
    border: 1px solid #301313;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;

}

#refresh-btn {
    display: block;
    margin: 5px auto;
    padding: 5px;
    font-size: 12px;
    background-color: white;
    color: black;
    border: 2px solid #008CBA;
    text-align: center;
    text-decoration: none;
    align-items: center;
    transition-duration: 0.4s;
    cursor: pointer;


}

#refresh-btn:hover {
    background-color: #008CBA;
    color: white;
}

#leveltext {
    display: block;
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 10px auto;
    padding: 10px;
    font-size: 16px;
}

#level {
    display: block;
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 10px auto;
    padding: 10px;
    font-size: 16px;
}

#timer {
    display: block;
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 10px auto;
    background-color: white;
    padding: 10px;
    font-size: 16px;
}
footer {
    padding: 10px; 
    position: fixed; /* Fix the position of the footer */
    bottom: 0; /* Place the footer at the bottom of the viewport */
    width: 100%; /* Make the footer span the full width of the viewport */
    padding: 20px; /* Padding around the content inside the footer */
    text-align: center; /* Center-align the text */
}

footer div {
    margin-bottom: 10px;
    font-size: 10px; 
}
