/* FONTS */

/* Inter — latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Inter — latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Rubik italic — latin-ext */
@font-face {
  font-family: 'Rubik';
  font-style: italic;
  font-weight: 300 900;
  font-display: swap;
  src: url('assets/fonts/rubik-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Rubik italic — latin */
@font-face {
  font-family: 'Rubik';
  font-style: italic;
  font-weight: 300 900;
  font-display: swap;
  src: url('assets/fonts/rubik-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Rubik normal — latin-ext */
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('assets/fonts/rubik-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Rubik normal — latin */
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('assets/fonts/rubik-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Rubik", sans-serif;
  color: #fff;
  box-sizing: border-box;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.section-uc {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: space-between;
  flex: 1;
  background: linear-gradient(rgba(5, 19, 41, 1), rgba(14, 15, 20, 0.9)),
    url(assets/images/header-bg.png);
  background-size: 180% 180%;
  animation: gradient-animation 144s ease infinite;
}

.uc__infobox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
}

.uc__heading {
  font-size: 6.4rem;
  letter-spacing: -1px;
  line-height: 0.9;
  text-transform: uppercase;
}

.uc__text {
  display: block;
  font-size: 2rem;
  line-height: 2;
}

.uc__link:link,
.uc__link:visited {
  text-decoration: none;
  color: #076cfa;
  transition: all 0.3s ease;
}

.uc__link:hover,
.uc__link:active {
  color: #75aeff;
}

.uc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 4.8rem;
  background-color: rgba(5, 19, 41, 0.8);
  border-top: 1px solid #0e2a50;
  font-size: 1.2rem;
  color: #75aeff;
}

.uc-footer__legal {
  display: flex;
  gap: 2.4rem;
}

.uc-footer__legal a:link,
.uc-footer__legal a:visited {
  color: #75aeff;
  text-decoration: none;
  transition: color 0.3s;
}

.uc-footer__legal a:hover,
.uc-footer__legal a:active {
  color: #fff;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0e2a50;
  border-top: 1px solid #0656c8;
  padding: 1.6rem 4.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
  z-index: 1000;
}

.cookie-text {
  font-size: 1.4rem;
  color: #dee2e6;
  line-height: 1.6;
}

.cookie-text a:link,
.cookie-text a:visited {
  color: #76aeff;
  text-decoration: underline;
}

.cookie-accept {
  flex-shrink: 0;
  background-color: #076cfa;
  color: #fff;
  border: none;
  padding: 1rem 2.4rem;
  border-radius: 4px;
  font-family: "Rubik", sans-serif;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cookie-accept:hover {
  background-color: #0656c8;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
