/* Theme colors */

:root {
  --color1: #d9b183;
  --color2: #211006; 
}

@media (prefers-color-scheme: dark) {
  :root {
    --color1: #211006;
    --color2: #d9b183;
  }
  .filter-lighter{
    filter: invert(77%) sepia(42%) saturate(347%) hue-rotate(346deg) brightness(90%) contrast(88%);
}
}

*, *::before, *::after {
  box-sizing: border-box;
}


body {
  flex-direction: column;
  margin: 0;
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--color1);
  color: var(--color2);

  font-family: Georgia, "Times New Roman", serif;
}

img {
  image-rendering: pixelated;
}

/* Panel */

.panel {
  width: 100%;
  max-width: 29rem;
  text-align: center;
}

/* logo */

.logo {
  margin-bottom: 0.5rem;
}

.logo img {
  width: 128px;
  height: auto;
}

/* Name */

h1 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  font-weight: 700;
}

/* tagline */

.tagline {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* socials icons */

.socials {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 2rem;
  height: 2rem;

  font-size: 1rem;
  text-decoration: none;

  transition: transform 0.15s ease, opacity 0.15s ease;
}

.social:hover {
  transform: translateY(-0.125rem);
}

/* hr= */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 2px solid var(--color2);
  margin: 1em 0;
  padding: 0;
}

/* buttons */

.button {
  border: none;
  padding: 1rem 0rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  margin: 0.25rem 0rem;
  transition-duration: 0.4s;
  cursor: pointer;
  border-radius: 1rem;
  width: 100%;
}

.button1 {
  background-color: var(--color1);
  color: var(--color2);
  border: 0.125rem solid var(--color2);
}

.button1:hover {
  background-color: var(--color2);
  color: var(--color1);
}
