:root {
  --purple: #1f0435;
  --grey: #333333;
  --green: #94ee6d;
}

* {
  font-family: Arial, Helvetica, sans-serif;
}

body {
  padding: 0 0.5em;
}

h1,
h2 {
  color: var(--purple);
}

.container {
  margin-top: 4rem;
}

.text {
  margin-top: 0.5em;
  color: var(--grey);
  font-size: larger;
}
.navbar {
  background-color: var(--green) !important;
}

.navbar-brand {
  font-size: 1rem;
  color: #000 !important;
}

.navbar-brand:hover {
  font-weight: bold !important;
}

.navbar-light .nav-link {
  color: #000 !important;
}

.navbar-light .nav-link:hover {
  font-weight: bold !important;
}

.footer {
  position: auto;
  left: 0;
  bottom: 0;
}

.footer > .copyright {
  margin: 1em;
}

.flexbox-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;

  /* Visual styling for the container */
  width: 80%;
  max-width: 600px;
  padding: 0;
  border-radius: 8px;
  border: 2px solid #333;
}
.item {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  flex: 1;
  min-width: 100px;
  text-align: center;
  padding: 20px;
}

.item1 {
  background-color: #8ff394;
}

.item2 {
  background-color: #ca81ec;
}

.item3 {
  background-color: #8beef9;
}

.item4 {
  background-color: #8bb1f9;
}

.item5 {
  background-color: #f69294;
}
