body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: black;
}

h1 {
  text-align: center;
  color: white;
}

.head {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 2.3rem;
}

.learn {
  border: 2px solid white;
  width: fit-content;
  color: white;
  text-decoration: none;
  padding: 7px;
}

button {
  font-size: 1.5rem;
  padding: 10px;
  margin-bottom: 2rem;
  background-color: black;
  color: white;
  border: 2px white solid;
  cursor: pointer;
}

main {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

p {
  margin: 0;
}

section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: white;
}

.no-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%
}

img {
  filter: drop-shadow(1px 1px 5px white);
}

