body, html {
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

#instruction-box {
	font-size: 1.5em; /* Increasing the font size for better readability */
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 15px;
    border-radius: 8px;
    z-index: 1000;
}

#nav-buttons {
    position: absolute;
	border-radius: 40px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    z-index: 1000;
    text-align: center;
}

button {
	font-size: 1.5em; /* Increasing the font size for better readability */
    padding: 10px 20px;
    margin: 5px;
    border: none;
    background-color: #333;
    color: #fff;
    border-radius: 20px;
    cursor: pointer;
}
