body {
  font-family: 'Libre Franklin', Arial, sans-serif;
  line-height: 1.6;
  margin: 20px;
  background: rgb(245 245 245);
  color: #4b5563;
}

h1,
h2,
h3 {
  font-family: Arial, sans-serif;
  color: black;
}

h1 {
  font-size: 3em;
}

img {
  max-width: 100%;
  height: auto;
}

@media only screen and (max-width: 600px) {

  /* Adjust styles for smaller screens if needed */
  body {
    margin: 10px;
  }
}

.nav-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 100px;
}

.nav-wrapper div {
  flex-grow: 1;
}

.nav-wrapper a {
  text-decoration: none;
  color: initial;
  font-weight: bold;
}

.btn {
  appearance: button;
  background-color: rgb(24, 24, 27);
  border-radius: 6px;
  padding: 8px 16px;
  text-decoration: none;
  color: rgb(250, 250, 250);
}

.video-wrapper {
  display: flex;
  justify-content: center;
}

video {
  width: 100%;
  height: auto;
}


.text-center {
  text-align: center;
}

.width-80 {
  width: 80%;
}

.d-flex {
  display: flex;
}

.flex-center {
  justify-content: center;
}

.margin-0 {
  margin: 0;
}

.margin-bottom-0 {
  margin-bottom: 0;
}

.margin-bottom {
  margin-bottom: 1em;
}

.margin-top-2 {
  margin-top: 2em;
}

.justify-content-end {
  justify-content: end;
}

.align-items-center {
  align-items: center;
}
