@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500&display=swap');

:root {
  --brand: #6257e3;
  --dark: #212529;
  --white: #ffffff;
  --yellow: #ffd33b;
  --blue: #00bfc3;
}

body {
  font-family: 'Rajdhani', sans-serif;
  line-height: 1.6;
  color: var(--white);
  letter-spacing: 1px;
}

h1 {
  font-family: 'Titillium Web';
}

h6 {
  font-weight: 600;
  letter-spacing: 2px;
}

a {
  text-decoration: none;
  color: var(--dark);
  transition: all 0.4s ease;
}

a:hover {
  color: var(--brand);
}

img {
  width: 100%;
}

.img_login {
  width: 10em;
}

.img_login:hover {
  transform: translateY(-7px);
}

.bg-brand {
  background-color: var(--brand);
}

.logo-text {
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
}

/* HERO */
.hero {
  background-image: url('../img/game3.jpg');
  background-repeat: repeat;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.hero h1 {
  letter-spacing: 0px;
  font-weight: 600;
  font-size: 90px;
  text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.3);
}

.hero h6 {
  letter-spacing: 2px;
  font-size: 20px;
}

/* BUTTON */
.btn {
  padding: 12px 32px;
  border-radius: 100px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}
.btn-brand {
  background-color: var(--brand);
  color: var(--yellow);
}

.btn-brand:hover {
  color: var(--brand);
  background: var(--yellow);
  border-color: var(--brand);
  transform: translateY(-7px);
  box-shadow: 0px 10px 20px var(--brand);
}

.btn-outline-brand {
  color: var(--brand);
  background: transparent;
  border-color: var(--brand);
}

.btn-outline-brand:hover {
  background-color: var(--brand);
  color: #fff;
}

/* NAVBAR */
.navbar {
  transition: background 0.5s ease, padding 0.2s ease;
  padding-top: 10px;
  padding-bottom: 10px;
}
.navbar-dark .navbar-nav .nav-link {
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.8s ease;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  color: #fff !important;
}

.navbar-dark .navbar-nav .nav-link.active {
  color: var(--brand) !important;
}

section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.icon {
  color: #fff;
  font-size: 50px;
  text-shadow: 2px 4px 6px turquoise;
}

/* FOOTER */
footer {
  background-color: var(--dark);
  padding-top: 60px;
  padding-bottom: 60px;
}

footer ul {
  list-style: none;
  margin-bottom: 0;
}

footer ul li {
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
}

footer ul li a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
}

footer .social-links a {
  color: #fff;
  font-size: 24px;
  margin: 0 5px;
}

/* Responsive Tab */
@media only screen and (max-width: 768px) {
  .hero h1 {
    font-size: 60px;
  }

  .hero h6 {
    font-size: 15px;
  }

  .img_login {
    width: 10em;
  }
}
/* Responsive Mobile */
@media only screen and (max-width: 468px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero h6 {
    font-size: 15px;
  }
}
