@font-face {
  font-family: 'Shadows';
  font-style: normal;
  font-weight: 400;
  src: url(/fonts/ShadowsIntoLight-Regular.ttf) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --link-color: #00A9C8;
  box-sizing: border-box;
  color: white;
  font-family: 'Shadows', Arial, sans-serif;
  letter-spacing: .07em;
}

*,
::before,
::after {
  box-sizing: inherit;
}

body {
  background-color: black;
  margin: 0;
  padding: 0;
}

header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2em;
}

main {
  align-items: center;
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.5;
  opacity: 0;
  position: relative;
  transition: opacity 1500ms linear;
  transition-delay: 1s;
}

footer {
  display: flex;
  justify-content: space-between;
  margin-top: 2em;
}

a {
  color: #BF6070;
  text-decoration: none;
}
a:hover {
  color: var(--link-color);
}

button {
  background-color: white;
  border: none;
  border-radius: .5em;
  box-shadow: .15em .1em 0 0 rgba(255, 255, 255, .5);
  color: hsl(190, 100%, 12%);
  display: block;
  font-size: .8rem;
  font-weight: bold;
  margin: 0 auto;
  padding: .3em;
  text-transform: uppercase;
  min-width: 10em;
}
button:active {
  box-shadow: unset;
  transform: translate(.15em, .1em) scale(.98);
}

figure {
  margin: 0;
}

hr {
  border: none;
}

p {
  font-size: .9rem;
  hyphens: auto;
  margin: 0;
}

.main-container {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: .2em;
  min-height: 100dvh;
  min-height: 100vh;
}

.logo {
  position: relative;
}
.logo img {
  display: block;
  width: auto;
  height: 6em;
}
.logo::after {
  content: "";
  background-color: var(--link-color);
  mix-blend-mode: multiply;
  opacity: 0;
  position: absolute;
  inset: 0;
  transition: opacity 350ms ease;
  width: 100%;
  height: 100%;
}
.logo:hover::after {
  opacity: 1;
}
.logo img:hover {
  filter: brightness(.75);
}

.heading {
  margin-bottom: 1em;
}
.heading img {
  width: auto;
  height: 2em;
}
.heading img:hover {
  filter: brightness(.75);
}

.hero {
  margin: 0 auto;
  overflow: hidden;
  max-width: 398px;
}
.hero img {
  max-width: 100%;
  height: auto;
}

.gdpr {
  margin-inline: 1em;
  max-width: 72ch;
}
.gdpr address {
  margin-block: 1em;
}

.gdpr-agree {
  background-color: hsla(190, 100%, 12%, .95);
  border: 1px solid white;
  border-radius: .2em;
  margin: 0 auto;
  padding: 1em;
  position: absolute;
  top: 0;
  max-width: 25em;
}

.copyright:hover {
  color: var(--link-color);
}
.nav-bottom ul {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding-left: 0;
}
.nav-bottom li {
  align-self: center;
}
.nav-bottom li + li {
  margin-left: .5em;
}
.nav-bottom li:last-child {
  margin-left: 1.2em;
}
.nav-bottom a {
  color: white;
  display: flex;
}
.nav-bottom a:hover {
  color: var(--link-color);
}
.nav-bottom svg {
  height: 1.2em;
}
.nav-bottom a path {
  fill: white;
}
.nav-bottom a:hover path  {
  fill: var(--link-color);
}
