@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');
body {
  background-color: white;
  color: black;
  font-family: Verdana;
}
h1 {
  text-align: center;
  font-family: "VT323";
  font-size: 100px;
  margin: 20px;
  
  }
  
h2 {
  text-align: center;
  font-family: "VT323";
  
  }
  
p {
  text-align: left;
  font-family: "VT323";
  }
  
  /* Style the button that is used to open and close the collapsible content */
.collapse {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: center;
  outline: none;
  font-size: 15px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapse:hover {
  background-color: #ccc;
}

/* Style the collapsible content. Note: hidden by default */
.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
}
  