@import url("https://fonts.googleapis.com/css2?family=Parkinsans:wght@300..800&display=swap");

@font-face {
  font-family: "Gerad";
  src: url("/Assets/Gerad.ttf") format("truetype");
}

:root {
  --Pri: #a00000;
  --Background: #181818;
  --Text: #ffffff;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #464646;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a00000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Parkinsans", sans-serif;
  background: url('/Assets/Background.png');
  background-size: cover;
  color: var(--Text);
  height: 100vh;
  background-position: center;
}

a {
  text-decoration: none;
  color: var(--Text);
  cursor: pointer;
}

h1 {
  font-family: "Gerad", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  text-align: center;
  font-size: 2vw;
}

h2 {
  font-family: "Gerad";
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.5vw;
}
b {
  color: var(--Pri);
}

img {
  image-rendering: optimizeSpeed;
}

/* <---- Buttons ----> */

.button {
  background-color: var(--Pri);
  color: #fff;
  padding: 0.8vw 3vw;
  width: 40vw;
  padding-top: calc(0.8vw + 3px);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-transform: uppercase;
  font-family: "Gerad";
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.button:hover {
  background-color: #800000;
}

@media screen and (max-width: 768px) {
  .button {
    font-size: 5vw;
    padding: 4vw 6vw;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  .button:hover {
    background-color: var(--Pri);
    scale: 1;
  }
}

.inverted {
  background-color: var(--Background);
  color: var(--Text);
  scale: 1.1;
}

.inverted:hover {
  background-color: var(--Background);
  scale: 1.2;
  color: var(--Pri);
}

.links {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.links a i {
    margin-right: 10px;
    font-size: 1.2em;
    margin-top: -5px;
}

.logo {
    position: absolute;
    width: 50%;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {

    body {
        background: url('/Assets/Background-Mobile.png');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        height: 100vh;
    }

    .button {
        width: 80vw;
    }

    .links {
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .logo {
        position: absolute;
        width: 90%;
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .logo img {
        width: 100%;
        height: auto;
    }
}