body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(49, 49, 49);
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;

    /* Disable highlighting */
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

#canvas {
    position: relative;
    width: 98%;
    height: 90%;
    background-color: rgb(39, 39, 39);
}

#menu {
    display: flex;
    position: absolute;
    gap: 10px;
    top: 2.5%;
    left: 1%;
}

#instructions {
    display: flex;
    flex-direction: column;
    font-weight: bold;
    color: white;
    font-size: 20px;
}

.control {
    opacity: 0.4;
    width: 30px
}

#refresh-button {
    width: 40px;
    padding: 10px 10px;
    background-color: rgb(60, 60, 60); /* Dark Gray */
    color: white;
    border: none;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#refresh-button:hover {
    background-color: rgb(80, 80, 80); /* Slightly Lighter Gray */
    transform: translateY(-2px);
}

#refresh-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}