@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
:root {
    --primary-color: rgb(11, 11, 59);
    --secondary-color: rgb(160, 0, 160);
    --main-bg-color: rgb(11, 11, 80);
    --font-family-1: 'Nunito', 'sans-serif';
    --font-family-2: 'Gilroy', 'sans-serif';
}
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body {
    max-width: 100vw;
    height: 100vh;
    background-color: var(--main-bg-color);
    font-family: var(--font-family-1);
}
header {
    color: white;
    background-color: var(--primary-color);
    border-radius: 20px;
}
main {
    padding: 0 2rem;
    background: var(--main-bg-color);
    color: white;
}
footer {
    padding: 2vh 0px;
    background-color: var(--main-bg-color);
    color: white;
    text-align: center;
}
input {
    border: none;
    outline: none;
    background: none;
}
.blockquote {
    max-width: fit-content;
    margin: 2rem auto;
    padding: 10px;
    background-color: rgb(255, 170, 255);
    color: black;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    border: 2px solid darkgrey;
    border-radius: 15px;
}
#first-half-nav {
    display: flex;
}
#second-half-nav {
    padding-left: 20rem;
}
.logo:active {
    scale: 0.8;
    transition: all ease 0.5s;
}
.link:active {
    text-decoration: none;
    color: white;
}
#nav-bar ul li {
    padding: 10px 20px;
}
.link:hover {
    font-weight: 600;
    border-bottom: 3px solid var(--secondary-color);
}
#search-bar {
    width: 20vw;
    padding: 2px;
    margin: auto;
    color: black;
    background-color: rgb(238, 235, 235);
    border-radius: 5px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.btn {
    &:hover {
        filter: grayscale(0.2);
    }
    &:active{
        scale: 0.8;
        transition: all ease 0.5s;
    }
}
/* search bar related classes */
.box{
    margin: 1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #333;
    border-radius: 5px;
    padding: 15px;
}
.img-box{
    width: 100%;
    height: 176px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.images{
    max-height: 90%;
    max-width: 90%;
    object-fit: cover;
    object-position: center;
}
.bottom{
    margin-top: 20px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 110px;
}
/* search bar related classes ends here */
.line {
    border-top: 1px solid grey;
}
.carousel {
    display: flex;
    align-items: center;
}
.slider {
    width: 50%;
    height: 45vh;
    margin: 3vh auto;
    box-shadow: 0px 0px 3px grey;
    position: relative;
    overflow: hidden;
}
.slide {
    width: 100%;
    transition: all ease 1s;
    position: absolute;
}
.slider-nav {
    text-align: center;
}
.slider-nav button {
    background-color: transparent;
    color: white;
    padding: 3px 5px;
    margin: 3vh 3px 0px;
    border: 2px solid white;
    border-radius: 5px;
    &:hover {
        box-shadow: 0 0 10px aqua;
    }
}
.nav-items-link {
    margin-top: 2rem;
    padding-right: 1em;
    font-size: xx-large;
    font-weight: bold;
    border-right: 3px solid var(--secondary-color);
}
.game-container {
    width: 100%;
    padding: 2rem 3rem;
    background-color: var(--main-bg-color);
    color: white;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}
.container {
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    border: 2px solid grey;
    border-radius: 10px;
    overflow: hidden;
    &:hover {
        box-shadow: 0 0 10px aqua;
        filter: grayscale(0.6);
    }
}
.game-name {
    background: var(--secondary-color);
    font-size: larger;
    font-weight: bold;
}
::-webkit-scrollbar {
    display: none;
}
.description-heading {
    margin: 1rem 3.5vw;
    padding-right: 1vw;
    font-size: x-large;
    font-weight: bold;
    border-right: 3px solid var(--secondary-color);
    display: inline-block;
}
.description {
    margin: 2vh auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.description img {
    max-width: 176px;
    border: 1px solid aqua;
    border-radius: 5px;
}
.description p {
    max-width: 60vw;
    padding: 7vh 4vh;
    font-size: 17px;
    text-align: justify;
    border: 1px solid grey;
    border-radius: 5px;
}
.about-section {
    margin: 2rem 3vw;
    padding: 0px 4vw;
    font-size: 20px;
    display: inline-flex;
    column-gap: 10px;
}
.second-h3 {
    margin: 10px 0;
    color: rgb(255, 170, 255);
    font-size: 25px;
    font-weight: bold;
}
.about-section img {
    max-width: 35vw;
}
.contact p, .help-and-support p {
    font-size: 20px;
    text-align: justify;
}
.query-section {
    margin-top: 10px;
    font-size: 17px;
}
.query-section input, textarea {
    width: 100%;
    margin: 5px 0px;
    padding: 5px;
    background-color: transparent;
    font-weight: bold;
    border:  1px solid grey;
    border-radius: 5px;
}
.query-section button {
    padding: 10px 20px;
    background-color: rgb(255, 170, 255);
    color: #000;
    border-radius: 50px;
    font-weight: bold;
    transition: all ease 0.4s;
    &:hover {
        background-color:rgb(160, 0, 160);
        color: #eee;
        box-shadow: 0 0 8px rgb(160, 0, 160);
    }
    &:active {
        scale: 0.9;
    }
}