:root {
  --background: #e1e1e1;
  --text: #000;
  --bg-brightness: 120%;

  @media (prefers-color-scheme: dark) {
    --background: #1c1c1c;
    --text: #e1e1e1;
    --bg-brightness: 25%;
  }
}

@keyframes blur {
  from {
    filter: blur(10px);
    opacity: 0;
  }

  99% {
    filter: blur(0);
  }

  to {
    filter: none;
    opacity: 1;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;

  @media (prefers-reduced-motion: reduce) {
    animation: none !important;
    transition: none !important;
  }
}

body {
  background: var(--background);
  color: var(--text);
  display: grid;
  font-family: 'Open Sans', sans-serif;
  grid-template-areas: 'main';
  height: 100svh;
  line-height: 1.6;
  margin: 0;
}

.bg {
  filter: blur(10px) brightness(var(--bg-brightness));
  -webkit-filter: blur(10px) brightness(var(--bg-brightness));
  background: center / cover no-repeat url('../public/bg.jpg'), var(--background);
  grid-area: main;
}

main {
  opacity: 1;
  display: grid;
  grid-area: main;
  height: 100svh;
  padding: 10rem 1rem;
  place-items: center;
  text-align: center;
  z-index: 1;
  animation: blur 0.5s ease-out forwards;
}

.content {
  display: grid;
  place-items: center;
  gap: 1rem;
  grid-template-columns: 1fr;
  width: 100%;
}

h1 {
  font-size: 1.5rem;
  font-weight: 600;
}

@media (min-width: 600px) {
  h1 {
    font-size: 2rem;
  }
}

h1 span {
  white-space: nowrap;
  font-weight: 400;
}

.logo {
  width: 100%;
  max-width: 10rem;
  max-height: 100%;
}

.logo-path {
  fill: none;
  stroke: var(--text);
  stroke-miterlimit: 10;
  stroke-width: 3.08px
}

.logo-fill {
  fill: var(--text);
  stroke: var(--text);
}

.socials {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.socials a svg {
  width: 2rem;
  height: 2rem;
  color: var(--text);
  transition: transform 0.1s ease;
}

.socials a svg:hover {
  transform: scale(1.1);
}