* {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

a {
  color: #ffffff;
  text-decoration: none; /* no underline */
}

@font-face {
  font-family: "Geist";
  src: url("/media/fonts/Geist-Medium.ttf") format("truetype");
}

h1 {
  font-size: 30px;
  font-weight: 500;
  line-height: 110%;
}

.subheading {
  color: rgb(255, 255, 255, 0.6);
}

body {
  background-color: #111111;
  font-family: "Geist";
  color: white;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-size: 14px;
  overflow: hidden;
  width: 100%;
  height: 100svh;
  -webkit-font-smoothing: antialiased;
  font-weight: 500;
}

main {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin-top: auto;
  align-items: center;
  justify-content: space-between;
  padding: 32px;
}

header {
  width: 100%;
  height: 18px;
}

.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px;
  gap: 44px;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  background: rgb(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 48px;
}

.card img {
  height: auto;
  width: 66px;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sponsored {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  color: rgb(255, 255, 255, 0.4);
}

.sponsors {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.sponsor {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-items: center;
}

.add-sponsor {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  height: 44px;
  border-radius: 8px;
  outline-offset: -1.5px;
  outline: 1.5px dashed rgba(255, 255, 255, 0.1);
  padding: 0px 16px 0px 12px;
  transition: 0.2s;
}
.add-sponsor:hover {
  background: rgba(255, 255, 255, 0.02);
  outline: 1.5px dashed rgba(255, 255, 255, 0.2);
  color: rgb(255, 255, 255, 0.7);
}

.add-sponsor:hover .plus {
  color: rgb(255, 255, 255);
}

.sponsor-icon {
  display: flex;
  flex-direction: column;
  padding: 8px;
  border: solid 1px rgb(255, 255, 255, 0.1);
  border-radius: 8px;
  height: 28px;
  width: 28px;
}

.title {
  color: rgb(255, 255, 255, 0.9);
}

.description {
  font-size: 12px;
  color: rgb(255, 255, 255, 0.6);
}

.sponsor:hover {
  cursor: pointer;
}

.sponsor:hover .sponsor-icon {
  border: solid 1px rgb(255, 255, 255, 0.15);
}

.sponsor:hover .title {
  color: rgb(255, 255, 255);
}

.footer {
  text-align: center;
  max-width: fit-content;
  color: rgb(255, 255, 255, 0.4);
  bottom: 32px;
}

.span {
  color: rgb(255, 255, 255, 0.6);
}

.span:hover {
  color: rgb(255, 255, 255, 0.9);
  transition: 0.2s;
}
