body {
   background-image: url("rain.gif");
  padding: 1rem;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  ;
  
}
ul {
  display: flex;
  list-style-type: none;
  margin: 0rem;
  padding: 0rem;
  margin-bottom: 1rem;
  overflow: hidden;
  background-color: #333;
  width: 100%;
  min-width: fit-content;
  border: 2px solid white;
  border-radius: 5px;
}

li {
  float: left;
}

li a {
  display: flex;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  border-right: 2px solid white;
  width: 100%;
  max-width: min-content;
}

li a:hover:not(.active) {
  background-color: #111;
}

.active {
  background-color: #04aa6d;
}
.flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  gap: 1rem;
  
}
.flex-column {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  height: 100%;
  row-gap: 1rem;
  
}
.cell {
  flex: 1;
  background-color: #111;
  border: 1px solid white;
  border-radius: 5px;
  width: fit-content;
}

h1,h2 {
  text-align: center;
  color: darkgreen;
  font-family: "Jacquard 12", system-ui;
  font-weight: 400;
}
p {
  text-align: center;
  color: darkgreen;
  font-family: "Jacquard 12", system-ui;
  font-weight: 400;
}

