<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

#map {
  height: 700px;
  width: 100%;
}

.btn {
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  font-family: "Inter", sans-serif;
}

.btn.primary {
  color: white;
  background: black;
}

.btn.secondary {
  color: black;
  background: white;
}

.center {
  display: flex;
  justify-content: center;
  text-align: center;
}

.total-handed-out {
  text-align: center;
  padding: 8px;
  background: rgb(241, 241, 241);
  font-weight: 600;
}

.logo {
  font-family: "Cinzel Decorative", cursive;
  text-decoration: none;
  font-size: 3rem;
  color: white;
  text-align: center;
  min-height: 60px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(to right, #434343 0%, black 100%);
}

main {
  padding: 0 16px;
}

#recentHandouts {
  white-space: nowrap;
  overflow-x: auto;
}

.recent-handout {
  cursor: pointer;
  background: transparent;
  border: none;
  display: block;
  text-align: center;
  width: 100%;
}

section {
  padding: 32px 0;
}

section.alt {
  background: #810000;
  color: white;
}

.donate {
  position: relative;
  min-height: 300px;
  row-gap: 16px;
  column-gap: 16px;
  padding: 32px;
}

.donate-images {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.donate-images img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin: 0 8px;
  border: 1px solid #380000;
}

.recent-handout .event-detail {
  display: flex;
  align-items: center;
  justify-content: center;
}

.recent-handout:hover {
  text-decoration: underline;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  width: 100%;
}

.form-group input {
  border-radius: 5px;
  border: 1px solid rgb(217, 217, 217);
  padding: 8px;
  width: 100%;
}

.form-group {
  margin-bottom: 16px;
}

.map-pin-form {
  border: 1px solid black;
  padding: 16px;
  width: 500px;
}

@media (max-width: 975px) {
  .donate-images img {
    margin-bottom: 16px;
  }
}

@media (max-width: 700px) {
  #map {
    width: 100%;
    height: 400px;
  }

  .logo {
    font-size: 1.5rem;
  }

  .map-pin-form {
    width: 100%;
  }
}

@media (max-width: 544px) {
  .donate-btn-wrapper {
    position: sticky;
    bottom: 0;
    background: #810000;
    padding: 8px;
  }

  .donate-btn-wrapper .btn {
    width: 100%;
  }
  
  .donate-images img {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
</pre></body></html>