			/* Reset default margin and padding for buttons */
button {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}

/* Container to hold the buttons and manage spacing */
.menu-container {
	    position: fixed;
    top: 7%;
    right: 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px; /* Adjust this value to control overall spacing */
	z-index: 999;
}

/* Base styling for the buttons */
.menu-buttons {
    flex: 1;
    max-width: calc(33.33% + 5px); /* Adjust this value for desired spacing */
    padding: 6px;
    transition: transform 0.3s;
	background-color: transparent;
    border: none;
	
}
 #menu-buttons:hover {
						transform: scale(1.1);
            }
