:root {
  --primary-color: #c9037d;
  --background-color: white;
  --text-color: black;
  --light-grey: #888;
  --white: #ffffff;
  --font-main: 'Montserrat', sans-serif;
  --radial-gradient: radial-gradient(rgb(255, 255, 255), #ffffffad);
  --drop-shadow: 0px 0px 20px 20px #ffffff6e;
}

canvas {
  background: var(--background-color);
}

body {
  margin: 0;
  padding: 0;
  position: relative;
  background-color: var(--background-color);
  font-family: var(--font-main);
  color: var(--text-color);
}

.content-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  text-align: center;
  position: relative;
  z-index: 1;
  /* background-color: rgba(255, 255, 255, 0.763); */
}
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 4rem;
  background: var(--radial-gradient);
  border-radius: 10000px;
  box-shadow: var(--drop-shadow);
}

.logo {
  max-width: 80%;
  height: auto;
}

.tagline {
  letter-spacing: 1px;
  font-size: 1.2rem;
  margin-top: 1rem;
  color: var(--text-color);
}
#text {
  fill: var(--text-color);
}

.cta-button {
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1rem 1.5rem;
  border: 4px solid var(--white);
  border-radius: 100rem;
  transition: background-color 0.2s, border-color 0.2s;
  background-color: var(--primary-color);
  margin-top: 3rem;
}

.cta-button:hover,
.cta-button:focus {
  background-color: var(--white);
  color: var(--primary-color);
  border: 4px solid var(--primary-color);
  outline: none;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 1rem;
}

.site-footer p {
  font-size: 0.8rem;
  text-align: center;
  color: var(--light-grey);
  margin: 0;
}

.org-number {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: underline dotted 1px;
  transition: color 0.2s;
}

.org-number:hover,
.org-number:focus {
  color: var(--text-color);
  outline: none;
}

.scramble-text {
  display: block;
}

@media (max-width: 768px) {
  .tagline {
    font-size: 0.9rem;
  }
}
@media (prefers-color-scheme: dark) {
  :root {
    --primary-color: #c9037d;
    --background-color: black;
    --text-color: #ffffff;
    --light-grey: white;
    --white: white;
    --radial-gradient: radial-gradient(rgba(0, 0, 0, 0.737), #0000003a);
    --drop-shadow: 0px 0px 20px 20px #0000001a;
  }
}
