body {
  background-image: linear-gradient(
    225deg,
    hsl(232deg 75% 12%) 0%,
    hsl(232deg 75% 12%) 11%,
    hsl(232deg 75% 12%) 28%,
    hsl(232deg 75% 12%) 44%,
    hsl(232deg 75% 12%) 59%,
    hsl(260deg 63% 14%) 72%,
    hsl(303deg 90% 12%) 83%,
    hsl(327deg 100% 16%) 91%,
    hsl(342deg 100% 20%) 96%,
    hsl(0deg 93% 22%) 100%
  );
}

a {
  color: #fff !important;
  text-decoration: none !important;
}

img {
    width: 100%;
}

.btn {
  padding: 12px 30px !important;
  border-radius: 10px !important;
}

.btn:hover {
  background-color: transparent !important;
  color: #fff !important;
}

/* ====================================
    NAVIGATION
   =================================== */
.nav-link {
  padding-left: 20px !important;
  font-weight: 600 !important;
}

.nav-link:hover {
  color: yellow !important;
}

.navbar-toggler:focus {
  outline: unset !important;
  border: unset !important;
  box-shadow: none !important;
}

/* Change navbar styling on scroll */

.navigation-wrap.scroll-on {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(35, 42, 92, 0.9);
  box-shadow: 0 0.125rem 1.75rem 0 rgb(0, 0, 0, 0.3);
  transition: all 0.15s ease-in-out 0s;
  z-index: 1000;
  animation: headerSlideDown 0.5s ease forwards;
}

@keyframes headerSlideDown {
  0% {
    margin-top: -100px;
    opacity: 0;
  }

  30% {
    margin-top: -50px;
    opacity: 0;
  }

  100% {
    margin-top: 0;
    opacity: 1;
  }
}

/* ====================================
    LANDING SECTION
   =================================== */
.landing {
  height: 100vh;
  background: url("/images/bg1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}

.landing h1 {
  font-size: 62px;
  font-weight: 700;
}

.landing-text {
    width: 50%;
}

/* ====================================
    ABOUT SECTION
   =================================== */
.about-section {
  background-image: linear-gradient(
    225deg,
    hsl(232deg 75% 12%) 0%,
    hsl(232deg 75% 12%) 11%,
    hsl(232deg 75% 12%) 28%,
    hsl(232deg 75% 12%) 44%,
    hsl(232deg 75% 12%) 59%,
    hsl(260deg 63% 14%) 72%,
    hsl(303deg 90% 12%) 83%
  );
}

.about-content h2 {
  text-shadow: 2px 2px 2px rgb(255 0 82 / 90%);
}

/* ====================================
    GAMES SECTION
   =================================== */
.games {
    background: url("/images/game-bg.jpg") no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.game-thumbnail img {
  transition: 0.5s;
}

.game-card {
  position: relative;
  transition: 0.5s;
}

.game-card:hover {
  transform: translateY(10px);
}

.game-overlay {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  transition: all 0.45s ease;
  display: grid;
  place-content: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: calc(100% - 40px);
  height: calc(100% - 20px);
  background-color: rgba(0, 0, 0, 0.8);
}

.game-card:hover .game-overlay {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ====================================
    CONTACT SECTION
   =================================== */
.contact {
  background: url("/images/contact-bg.jpg") no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.contact-info {
  background: rgba(35, 42, 92, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 6%);
  padding: 30px;
}

.float-right {
  border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 6%);
  height: 57px;
  padding: 0 25px;
  background: rgba(35, 42, 92, 0.5);
  font-size: 18px;
  color: #f1f1f1 !important;
  outline: none;
}

.form-group textarea {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 6%);
  padding: 25px;
  background: rgba(35, 42, 92, 0.5);
  font-size: 18px;
  color: #f1f1f1 !important;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #f1f1f1 !important;
}

.form-group input:focus,
.form-group textarea:focus {
  background: rgba(35, 42, 92, 0.5);
  outline: none !important;
  border: none !important;
}

/* ====================================
    FOOTER
=================================== */
footer {
  padding: 40px 0 10px 0;
  background: url("/images/footer-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}


/* ====================================
    RESPONSIVE DESIGN
   =================================== */
@media (max-width: 991px) {
    .navigation-wrap {
        background: rgba(35, 42, 92, 0.9);
        text-align: center;
    }

    .landing .container {
        margin-left: 40px !important;
    }

    .landing-text {
        width: 70% !important;
    }

    .about-img {
        width: 70%;
        display: flex;
        margin: auto;
    }
}

@media (max-width: 768px) {
    .game-thumbnail img {
        width: 70%;
        display: flex;
        margin: auto;
    }

    .game-overlay {
        width: calc(70% - 40px);
    }
}

@media (max-width: 540px) {
    .landing {
        background-position: left -340px center;
    }

    .landing h1 {
        font-size: 56px;
    }

    .landing-text {
        width: 100% !important;
    }

    .landing .container,
    .contact .container,
    .about-section .container {
        margin-left: 0 !important;
        padding: 0 30px;
    }
}

@media (max-width: 425px) {
}




