@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Roboto:wght@400;700&display=swap');

/* css reset */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  width: 100%;
  height: 100%;
  font-family: 'Luckiest Guy', cursive;
}

nav ul {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html {
  box-sizing: border-box;
}

body,
html {
  height: 96vh;
  background-color: #111;
  color: white;
}

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

a {
  transition: all 0.3s;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
}

main {
  width: 100%
}

.gamesFriends::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.1);
}

.btn {
  font-size: 24px;
  padding: 15px 0px;
  display: inline-block;
  background-size: cover;
  width: 250px;
  height: 160px;
  border: none;
  cursor: pointer;
  border-radius: 35px;
  margin: 0 10px 10px 10px;
}

.btn_wrapper {
  z-index: 1;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-direction: row;
  width: 100%;
  align-self: end;
}

.gamesFriends {
  height: 100% !important;
  overflow: hidden;
  display: flex;
  background-position: center;
}

#q1 {
  position: absolute;
  min-height: 100%;
  width: 100% !important;
  height: 100% !important;
  background-size: cover;
  background-position: center top;
}

@media only screen and (max-width: 736px) {
  .btn_wrapper {
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
  }

  .btn {
    display: inline-block;
    font-weight: 700;
    cursor: pointer;
  }

  .btn_1 {
    top: 60%;
    right: initial;
  }

  .btn_2 {
    top: 80%;
    left: initial;
  }
}

@media only screen and (max-width: 420px) {
  .btn {
    width: 100%;
    height: 120px;
    max-width: 300px;
    cursor: pointer;
  }

  .btn_1 {
    top: 60%;
    right: initial;
  }

  .btn_2 {
    top: 80%;
    left: initial;
  }
}

.loader {
  position: absolute;
  background: rgba(0, 0, 0, 1.00);
  z-index: 1000;
  width: 100%;
  height: 100%;
}

.load {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  width: 100%;
  height: 100%;
  margin: auto;
  animation: load 1.2s infinite 0s ease-in-out;
  animation-direction: alternate;
  text-shadow: 0 0 1px white;
}

form {
  position: absolute;
  display: grid;
  top: 100%;
  left: 50%;
  text-align: center;
  margin-top: 50px;
  transform: translate(-50%, -50%);
}

/* header animation */
@keyframes animateHeader {
  from {
    transform: scale(1.8);
    filter: blur(6px);
  }

  to {
    transform: scale(1);
    filter: blur(0px);
  }
}

/* loader */
@keyframes load {
  0% {
    opacity: 0.08;
    filter: blur(5px);
    letter-spacing: 13px;
  }
}