html {
  cursor: url('arrow.png'), auto;
  
}
a {
  cursor: url('arrow.png'), auto;
}
body{
	font-family: 'Courier New', monospace;
	background-color: black;
	background-image: url("matrix2.gif");
	background-repeat: repeat;
	height: 100%;
	display: flex;
	justify-content: center;
}
iframe {
	border: none;
	cursor: url('arrow.png'), default;
	
}
.logo {
	display: flex;
	justify-content: center;
}
.button {
  background-color: #4AF626;
  border: none;
  color: black;
  padding: 15px 30px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  border-radius: 15px;
  transition: background-color 0.3s ease;
}
.button:hover {
  background-color: #ff7800;
  border: none;
  color: black;
  padding: 15px 30px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  border-radius: 15px;
}
.grid {
  display: grid;
  grid-template-areas:
    "header header header"
    "menuleft content menuright"
    "footer footer footer";
  grid-template-columns: 1fr 6.5fr 0.6fr;
  grid-template-rows: auto 2fr auto;
  gap: 5px;
  color: #ff7800;
  background-color: #4AF626;
  padding: 10px;
  border-radius: 15px;
  height: 95vh;
  width: 80%;
}
.grid > div {
  background-color: rgba(0, 0, 0, 1);
  padding: 10px;
}
.grid > div.header {
  grid-area: header;
  text-align: center;
  border-radius: 15px;
  background-image: url(matrix.gif);
}
.grid > div.menuleft {
  grid-area: menuleft;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.grid > div.menuright {
  grid-area: menuright;
  border-radius: 15px;
}
.grid > div.content {
  grid-area: content;
  border-radius: 15px;
  padding: 0;
}
.grid > div.footer {
  grid-area: footer;
  border-radius: 15px;
}