.logo.vanilla:hover {
  filter: drop-shadow(0 0 2em #ffe21c);
}
:root {
  font-family: Rubik, Inter, Avenir, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;

  color: #0f0f0f;
  background-color: #f6f6f6;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

h1 {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 0.5em;
}

.container {
  margin: 0;
  padding-top: 3vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.logo {
  height: 9em;
  padding: 1.5em;
  will-change: filter;
  transition: 0.75s;
}

.logo.ham:hover {
  filter: drop-shadow(0 0 2em #db6d24);
}

.row {
  display: flex;
  justify-content: center;
}

#buttons-row {
  flex-direction: column;
  gap: 1em;
  align-items: center;
}

a {
  font-weight: 500;
  color: #646cff;
  text-decoration: inherit;
}

a:hover {
  color: #535bf2;
}

h1 {
  text-align: center;
}

.features {
  margin-top: 2em;
  text-align: center;
}

.features h2 {
  font-size: 2em;
  margin-bottom: 1em;
}

.features ul {
  list-style: none;
  padding: 0;
}

.features li {
  margin: 0.5em 0;
  font-size: 1.1em;
}

footer {
  margin-top: 3em;
  font-size: 0.9em;
  color: #666;
}

input,
button {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.6em 1.2em;
  font-size: 1.3em;
  font-weight: 500;
  font-family: inherit;
  color: #0f0f0f;
  background-color: #ffffff;
  transition: border-color 0.25s;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

button {
  cursor: pointer;
}

button:hover {
  border-color: #396cd8;
}
button:active {
  border-color: #396cd8;
  background-color: #e8e8e8;
}

.button-link {
  display: inline-block;
  border-radius: 8px;
  border: 2px solid transparent;
  padding: 0.6em 4em;
  font-size: 1.6em;
  font-weight: 500;
  font-family: inherit;
  color: #0f0f0f;
  background-color: #ffffff;
  transition: border-color 0.25s;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  cursor: pointer;
  max-width: 250px;
  margin-top: 0.5em;
}

.button-link:hover {
  border-color: #396cd8;
}

.button-link:active {
  border-color: #396cd8;
  background-color: #e8e8e8;
}

.button-link.discord {
  background-color: #5865f2;
  color: #ffffff;
  font-size: 1.3em;
  padding: 0.6em 2.2em;
}


input,
button {
  outline: none;
}


@media (prefers-color-scheme: dark) {
  :root {
    color: #f6f6f6;
    background-color: #2f2f2f;
  }


  input,
  button {
    color: #ffffff;
    background-color: #0f0f0f98;
  }
  button:active {
    background-color: #0f0f0f69;
  }

  .button-link {
    color: #ffffff;
    background-color: #0f0f0f98;
  }

  .button-link:active {
    background-color: #0f0f0f69;
  }

  footer {
    color: #ccc;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 400px;
  text-align: center;
  border-radius: 8px;
}



.screenshot {
  width: 50%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);

  transition: transform 0.1s ease-out; /* Smooth transition for the effect */
  transform-style: preserve-3d; 
}





@media (prefers-color-scheme: dark) {
  .modal-content {
    background-color: #2f2f2f;
    color: #f6f6f6;
  }
}
