* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
}

.container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(20, 120px); /* 20 rows, each 120px tall */
  gap: 4px;
  overflow-y: auto; /* Enable vertical scrolling */
  height: 99vh;
  width: 97%;
  padding: 5px;
  
}

.grid-item {
	padding: 5px;
  display: grid;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 15px;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  
}

a:link {
  color: #ffffff;
  background-color: transparent;
  text-decoration: none;
}
a:visited {
  color:  #ffffff;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  color:  #0047b3;
  background-color: transparent;
  text-decoration: underline;
}
a:active {
  color: #0047b3;
  background-color: transparent;
  text-decoration: underline;
}