:root {
  --main: rgb(255, 255, 189);
}

body {
  margin: 0;
  padding: 0;
  max-width: 100vw;
  min-height: 100vh;
  background-color: var(--main);
  place-items: center;
  font-family: "Inter", sans-serif;
}

*, *::after, *::before {
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.308);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

#search {
  padding: 10px;
  width: 40%;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
}

.btn {
  padding: 10px 15px;
  border: none;
  background: var(--main);
  color: white;
  cursor: pointer;
  border-radius: 8px;
  font-weight: bold;
}

.outline {
  background: white;
  color: #007bff;
  border: 2px solid var(--main);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 2px solid black;
  transition: transform 0.2s ease-in-out;
}
.card p {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
}

.download-btn {
  margin-top: 10px;
  width: 100%;
  background: #383838;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}
.download-btn > a {
  color: white;
}

a {
  text-decoration: none;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  border-radius: 0.5rem;
  background-color: #fefefe;
  margin: 2ch auto; /* 15% from the top and centered */
  padding: 20px;
  border: 2px solid #000;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#file {
  color: #aaa;
  text-decoration: underline;
}

.contributions-section {
  position: relative;
  text-align: center;
  padding: 0ch 2ch;
}

.contributions-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  margin-inline: auto;
  width: 100%;
  height: 1px;
  background-color: #aaa;
}

.contribute-options {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
}
.contribute-options > * {
  width: 100%;
}
.contribute-options__form {
  text-align: center;
}
.contribute-options__form > span {
  font-size: 8em;
}

.contribute-options > span {
  width: 3px;
  background-color: #aaa;
}

.qr-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 15px 0;
}

.qr-container img {
  width: 20vw;
  aspect-ratio: 1;
  max-height: 500px;
}

.btn {
  background: #ff4757;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
}

.btn:hover {
  background: #e84118;
}/*# sourceMappingURL=style.css.map */
