/* Define color variables */
:root {
    --background-color: #ffffff;
    --text-color: #333333;
    --ruler-color: #FF6A00;
    --footer-background-color: #FF6A00;
    --footer-text-color: #ffffff;
    --link-color: inherit;
  }
  
  /* Dark mode colors */
  @media (prefers-color-scheme: dark) {
    :root {
      --background-color: #1f1f1f;
      --text-color: #e0e0e0;
      --ruler-color: #FF6A00;
      --footer-background-color: #FF6A00;
      --footer-text-color: #ffffff;
      --link-color: inherit;
    }
  }
  
  /* html {
    background-color: var(--footer-background-color);
  } */


/* Set the background color for the entire page */
body {
  background-color: var(--background-color);
  color: var(--text-color);
}

/* Your existing CSS, updated to use color variables */
#content {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 300;
}

.container {
  margin-inline: 20px;
  font-weight: 100;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  flex-direction: column;
  text-align: center;
  position: relative;
}

.app-icon {
  width: 200px;
  height: 200px;
  display: block;
  /* margin:  0 auto 10px; */
}

.app-icon-small {
  width: 75px;
  height: 75px;
  display: block;
  margin: 0 auto 10px;
}

.screenshot {
  width: 100%;
  display: block;
  box-shadow: 0px 0px 20px #a9a9a9;
}

.container h1 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 10px;
}

.container p {
  font-size: 18px;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: var(--footer-background-color);
  color: var(--footer-text-color);
  text-align: center;
}

.footer p {
  margin: 4px;
  font-size: 14px;
  font-family: Helvetica, Arial, sans-serif;
}

a,
a:visited,
a:active {
  color: var(--link-color);
}

.block {
  width: 100%;
  max-width: 850px;
  box-sizing: border-box;
  padding-bottom: 30px;
  padding-inline: 20px;
  margin-inline: auto;
}

#privacy {
  font-size: 15px;
  margin-inline: auto;
}

.form-container {
    margin-inline: auto;
    padding: 2em;
    max-width: 650px;
}

.form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1em;
}

label {
    margin-bottom: .5em;
}

input, textarea {
    padding: .5em;
    border: 1px solid #ccc;
    border-radius: 4px;
}

textarea {
  min-height: 50px;
  max-width: 100%;
}

button {
    cursor: pointer;
    padding: .5em 1em;
    background-color: var(--footer-background-color);
    color: #ffffff;
    border: none;
    border-radius: 7px;
}
  