	.nav-buttons {
		position: fixed;
		top: 0;
      position: fixed;
      display: flex;
      justify-content: space-between;
      gap: 10px;
      width: 100%;
      height: 100%;
	  z-index: 2;

	}
	    .nav-buttons button {
	    font-size: 25px;
    cursor: pointer;
    transition: 0.3s;
    color: #2E82C0;
    border: none;
        padding: 0;
		    width: 20px;
    background: #fff;
    height: 100%;
    }
	
    .nav-buttons button:hover {
      background: #21608C;
	  color: #fff;
    }
	
	@media screen and (max-width: 600px) { 	
		.nav-buttons {
			display: none;
		}
	}