@import url("https://fonts.googleapis.com|Martel+Sans");

html {
  scroll-behavior: smooth;
}

.button-a {
  text-decoration: none; /* Removes the underline */
  color: inherit; /* Inherits color from parent instead of default blue */
}

.footer-a {
  text-decoration: none; /* Removes the underline */
  color: #cadfca; /* Inherits color from parent instead of default blue */
  transition: color 0.2s ease;
}

.footer-a:hover {
  text-decoration: none; /* Removes the underline */
  color: white; /* Inherits color from parent instead of default blue */
}

body {
  --background: #fafffa;
  /* --background: linear-gradient(0deg, #b8b8b8 0%, #f8f8f8 100%); */
  /* --background: linear-gradient(0deg, #b8b8b8 0%, #f8f8f8 100%); */

  /* --background: #0f0f0f; */
  /* --background: linear-gradient(45deg, #6283a5 0%, #576bb0 100%); */
  /* --background: linear-gradient(45deg, #0f0f0f 0%, #242424 100%); */
  /* --foreground: #ededed; */
  /* --background: linear-gradient(135deg, #006494 0%, #6e9b32 100%); */

  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;

  padding: 0;
  margin: 0;

  /* margin-top: 64px; */
}

.section {
  display: flex;
  gap: 4rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}

.section-padded-top {
  padding-top: 5rem;
}

.section-padded-bottom {
  padding-bottom: 5rem;
}

.icon-img {
  filter: drop-shadow(2px 2px 5px rgb(2, 2, 2, 0.5));
  border-radius: 8px;
  width: 36px;
  height: auto;
}

h1 {
  /* font-family: sans-serif; */
  font-family: "Trebuchet MS";
  font-weight: 900;
  font-size: 3.5rem;
  color: #317d67;
  margin-bottom: 0;
  margin-top: 52px;
}

h2 {
  font-family: "Trebuchet MS";
  font-weight: 900;
  font-size: 2rem;
  color: #317d67;
  /* margin-bottom: 0; */
  /* margin-top: 52px; */
}

.img-display {
  border-radius: 25px;
}

.feature-text {
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.7);
}

.pricing-text {
  margin-bottom: 0.5rem;
  color: rgba(80, 80, 80);
}

.feature-text-light {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
}

.spacer {
  height: 5rem;
}

.fancy-button {
  min-height: 3rem;
  min-width: 7rem;
  background-color: #317d67;
  transition: background-color 0.2s ease;
  border-radius: 15px;
  cursor: pointer;
  color: white;
  font-size: 1.5rem;
  font-family: "Trebuchet MS";
  padding: 1.2rem;
  border: 0;
  box-shadow:
    0 3px 6px 0 rgba(0, 0, 0, 0.2),
    0 6px 15px 0 rgba(0, 0, 0, 0.19);
}

.header-button {
  min-height: 2rem;
  min-width: 5rem;
  /* background-color: #317d67; */
  border-radius: 15px;
  background-color: transparent;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.2rem;
  font-family: "Trebuchet MS";
  padding: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  border: 0;
  text-decoration: underline;
  text-decoration-color: transparent;
  display: flex;
  gap: 0.35rem;
  margin-right: 0.5rem;
  transition:
    text-decoration-color 0.2s ease,
    gap 0.2s ease,
    margin 0.2s ease;
}

.header-button:hover {
  /* background-color: rgba(0, 0, 0, 0.1); */
  /* text-decoration: underline; */
  gap: 0.5rem;
  margin-right: 0.35rem;
  text-decoration-color: rgba(0, 0, 0, 0.7);
  /* color: white; */
  /* box-shadow:
    0 3px 6px 0 rgba(0, 0, 0, 0.1),
    0 6px 15px 0 rgba(0, 0, 0, 0.09); */
}

.card-shadow {
  box-shadow:
    0 4px 8px 0 rgba(0, 0, 0, 0.2),
    0 8px 30px 0 rgba(0, 0, 0, 0.3);
}

.fancy-button:hover {
  background-color: #176f80;
}

.fancy-button:active {
  background-color: #135b69;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.fade-delay-1 {
  animation-delay: 0.15s;
}

.fade-delay-2 {
  animation-delay: 0.3s;
}

.fade-delay-3 {
  animation-delay: 0.45s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (width <= 40rem) {
  .login-button {
    height: 18rem;
  }
  .stack-if-small {
    flex-direction: column;
  }
  .shrink-text-if-small {
    font-size: 1.5rem;
  }
}
@media (width > 40rem) {
  .login-button {
    height: 10rem;
  }
  .shrink-text-if-small {
    font-size: 2rem;
  }
}
