body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: bold;
}

p {
  margin: 0 0 1rem;
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2rem 5rem;
}
@media (max-width: 767px) {
  .site-header {
    margin: auto;
    padding: 0;
    padding-top: 2rem;
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .site-header {
    padding: 1.5rem 3rem;
  }
}
.site-header .navbar {
  display: flex;
  justify-content: center;
}
.site-header .navbar .nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2rem;
}
@media (max-width: 767px) {
  .site-header .navbar .nav-links {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .site-header .navbar .nav-links {
    gap: 1.5rem;
  }
}
.site-header .navbar .nav-links a {
  color: #fff;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}
.site-header .navbar .nav-links a:hover {
  color: #e84b21;
}

.site-footer {
  background-color: #222;
  color: #fff;
  text-align: center;
}
.site-footer p {
  margin: 0;
  padding: 0;
}

button {
  background-color: #e84b21;
  border: none;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
button:hover {
  background-color: #c23914;
}

a {
  color: #f39c12;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #e84b21;
}

body {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100vh;
  margin: 0;
  background-color: #f9f9f9;
  color: #333;
}

.site-main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}

.default-header {
  width: 100%;
  height: 5.5rem;
  background-color: #222;
}

.flash {
  position: absolute;
  top: 6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 80%;
  max-width: 600px;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  animation: fadeout 0.5s 3.5s forwards;
}
.flash-success {
  background-color: #27ae60;
  color: #fff;
}
.flash-error {
  background-color: #e74c3c;
  color: #fff;
}
@keyframes fadeout {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/*# sourceMappingURL=base.output.css.map */
