:root {
  --teal-50: #e3feff;
  --teal-100: #c9eaec;
  --teal-200: #b3d7d3;
  --teal-400: #6ec2cf;
  --teal-500: #52a4b0;
  --teal-800: #347d88;
  --teal-900: #16434a;
  --faded-teal-900: #39585c;

  --peach-200: #f5b9ad;
  --peach-500: #f0a68c;
  --green-400: #9de56c;
  --green-200: #b7dd82;
  --faded-green-50: #d9f5b8;
  --faded-green-100: #daecb1;
  --faded-green-200: hsl(83, 48%, 67%);
  --light-orange: #f8d2a3;

  --light-gray: rgb(195, 195, 195);

  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  color: var(--teal-900);
  box-sizing: border-box;
}

* {
  /* margin: 0;
  padding: 0;
  If I add these to my css default, I will just have to add back in margin and padding to the faq container and the settings modals. */
  box-sizing: border-box;
}

h1 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 5px;
  margin-top: 5px;
  margin-left: 70px;
  margin-right: 70px;
  grid-row: 1/2;
}

.requirements {
  font-size: 2rem;
  font-weight: 100;
}

.blue-button,
.download-button {
  align-items: center;
  background-color: var(--teal-100);
  border: 5px solid var(--teal-800);
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 1.5rem;
  padding: 4px;
  max-width: 20ch;
  margin-left: 1rem;
  margin-right: 1rem;
  margin-top: 1rem;
  color: var(--teal-900);
  cursor: pointer;
  display: flex;
  font-family: Inter, sans-serif;
  position: relative;
  text-align: center;
  touch-action: manipulation;
  transition-duration: 0.4s;
}

alert {
  background-color: var(--teal-200);
}

.blue-button:hover,
.blue-button:focus,
.download-button:hover,
.download-button:focus {
  background-color: white;
}

.download-button-container button:nth-child(3) {
  padding-left: 20px;
  padding-right: 20px;
}

.download-button[data-copied='true']::before {
  content: url(../assets/icons-logos/check-icon.svg);
  margin-left: 5px;
  margin-right: 10px;
  align-self: center;
  width: 30px;
  height: 30px;
}

.download-button[data-copied='true'] {
  content: 'Copied!';
  width: 12ch;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#division-warning {
  font-size: 1.25rem;
}

h2 {
  font-weight: 200;
}

@font-face {
  font-family: 'Lovelo-LineBold';
  src: url(../assets/Lovelo-LineBold.woff);
}

.logo-text,
.main-title {
  font-family: 'Lovelo-LineBold', sans-serif;
  color: var(--teal-900);
  line-height: 1.5;
  font-size: 4.5rem;
  text-shadow: 4px 4px 1px var(--teal-400);
  font-weight: 800;
  grid-row: 1/-1;
  grid-column: 1/-1;
  z-index: 1;
}

ul {
  all: unset;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
li {
  all: unset;
  vertical-align: top;
  display: flex;
  flex-wrap: wrap;
  align-items: top;
  gap: 10px;
}

.no-styles {
  all: inherit;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.card img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  height: 66px;
  width: auto;
}

#mult-cards img {
  height: 115px;
}

#logo-svg {
  grid-row: 1/-1;
  grid-column: 1/-1;
  z-index: 0;
  margin-top: 25px;
  animation: svgShadow;
  animation-duration: 10s;
  animation-fill-mode: forwards;
}

@keyframes svgShadow {
  0% {
    filter: none;
  }
  20% {
    filter: drop-shadow(3px 5px 5px rgba(52, 125, 136, 0.2));
  }
  50% {
    filter: drop-shadow(3px 5px 2px rgba(52, 125, 136, 0.5));
  }
  80% {
    filter: drop-shadow(3px 5px 2px rgba(28, 75, 82, 0.7));
  }
  100% {
    filter: drop-shadow(3px 5px 2px rgba(16, 49, 54, 0.85));
  }
}

.buy-license {
  position: fixed;
  padding-right: 7px;
  bottom: 15px;
  right: 15px;
  width: 13ch;
  color: var(--faded-green-100);
  font-size: 1.5rem;
  background-color: var(--teal-800);
  border: none;
  padding-inline: 1.5rem;
  padding-block: 0.5rem;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  box-shadow: 2px 2px 5px var(--teal-400);
}

.buy-license:hover {
  background-color: var(--teal-900);
}

.bold-link {
  font-weight: 600;
  text-decoration: underline;
}

.title {
  margin-top: 20px;
}

.email-link {
  font-size: 2rem;
  font-weight: 600;
  align-items: center;
  background-color: var(--teal-100);
  border: 5px solid var(--teal-800);
  border-radius: 8px;
  color: var(--teal-900);
  cursor: pointer;
  display: flex;
  font-family: Inter, sans-serif;
  margin-bottom: 2rem;
}
