* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Kumbh Sans', sans-serif;
}

.navbar {
    background: black;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

#navbar__logo {
    background-color: white;
    background-image: linear-gradient(to top, gray 0%, white 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
}

.fa-gem{
    margin-right: 0.5rem;
}

.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar__item {
    height: 80px;
}

.navbar__links {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
}

.navbar__links:hover {
    color: red;
    transition: all 0.3s ease;
}

@media screen and (max-width: 960px) {
    .navbar__container{
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar__menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 0;
        transition: all 0.5s ease;
        height: 50vh;
        z-index: -1;
        background: black;
    }

    .navbar__menu.active {
        background: black;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 50vh;
        font-size: 1.6rem;
    }

    #navbar__logo{
        padding-left: 25px;
    }

    .navbar__toggle .bar{
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: white;
    }

    .navbar__item{
        width: 100%;
    }

    .navbar__links {
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
    }

    #mobile-menu{
        position:absolute;
        top: 20%;
        right:5%;
        transform: translate(5%, 20%);
    }

    .navbar__toggle .bar{
        display: block;
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Hero Section */

.main{
    background-color: black;
}

.video__container {
    position:relative;
}

.background__video {
    position: absolute;
    width: 100vw;
    height: 80vh;
}
.main__container {
    display: grid;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    height: 90vh;
    z-index: 1;
    width: 100%;
    padding: 0 50px;
    text-align: center;
    
}

.main__content {
    z-index: 1;
    font-size: 1.5em;
    color: #fe7f88;
    background-image: none;
    background-color: rgba(0, 0, 0, 0.6); /* 50% transparent black */
}

.main__content--header{
    font-size: 4rem;
    background-color: white;
    background-image: linear-gradient(to top, gray 0%, white 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: black;
}

.main__content--text{
    font-size: 3rem;
    background-color: white;
    background-image: linear-gradient(to top, gray 0%, white 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: black;    
}

.main__content--subtext {
    font-size: 1.5rem;
    background-color: white;
    background-image: linear-gradient(to top, gray 0%, white 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: black;
}

.main__btn{
    font-size: 1rem;
    background-image: linear-gradient(to top, #ff0844 0%, #ffb199 100%);
    padding: 14px 32px;
    border:none;
    border-radius: 4px;
    color: black;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
    margin: 12px;
}

.main__btn a {
    position: relative;
    z-index: 2;
    color: black;
    text-decoration: none;
    font-size: 1.5rem;
}

.main__btn:after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #4837ff;
    transition: all 0.35s;
    border-radius: 4px;
}

.main__btn:hover{
    color: black;
}

.main__btn:hover:after{
    width:100%;
}

.main__image--container{
    background-image: url("images/Space1.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

/* About Main */

.main-A {
    background-color: white;
    z-index: 1;
}

.main__container-A{
    display: grid;
    grid-template-columns: repeat(2, 50%);
    align-items: center;
    justify-content: center;
    margin:0 auto;
    height: 60vh;
    width: 100%;
    padding: 0 30px;  
}

.main__content-A{
    font-size: 1.5em;
    color: black;
    background-image: none;
    background-color: transparent;
}

.main__content--profileImg{
    justify-self: right;
    padding-right: 64px;
}

.main__content--header-A{
    margin-bottom: 36px;
}

.main__content--text-A{
    font-size: 1rem;
    width: 50%; 
    color: #626262 ;
}

.main__btn-A{
    font-size: 1rem;
    padding: 14px 32px;
    border:none;
    border-radius: 4px;
    color: white;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
    background-color: black;
}

.main__btn-A a {
    position: relative;
    z-index: 2;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
}

.main__btn-A:after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: red;
    transition: all 0.35s;
    border-radius: 4px;
}

.main__btn-A:hover{
    color: black;
}

.main__btn-A:hover:after{
    width:100%;
}

/* Portfolio Main */
.main-P{
    background-color: black;
}

.main__container-P{
    align-items: center;
    justify-content: center;
    margin:0 auto;
    background-color: black;
    z-index: 1;
    width: 100%;
    padding: 0 50px;
    background-image: url("images/Space2.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
    text-align: center;    
}

.main__content-P{
    font-size: 1.5em;
    background-image: none;
    background-color: transparent;
}

.main__content--header-P{
    font-size: 5rem;
    background-color: white;
    background-image: linear-gradient(to top, gray 0%, white 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: black;
    padding-bottom: 64px;
    padding-top: 64px;
}

.gameContainer{
    margin-bottom: 10rem;
}

.gameImage__Container{
    display: flex;
    gap: 1em;
    justify-content: center;
}

.gameTitle{
    font-size: 4rem;
    background-color: white;
    background-image: linear-gradient(to top, gray 0%, white 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: black;
    text-align: center;
    padding-bottom: 32px;
}

.gameImage_thirds{
    display: flex;
    flex-grow: 1;
    max-width: 25%;
}

.gameImage_fourths{
    display: flex;
    flex-grow: 1;
    max-width: 20%;
}

.gameImage_single{
    display: flex;
    flex-grow: 1;
    max-width: 50%;
}

.main__btn-P{
    font-size: 1rem;
    background-image: linear-gradient(to top, #ff0844 0%, #ffb199 100%);
    padding: 14px 32px;
    border:none;
    border-radius: 4px;
    color: black;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
    margin-bottom: 64px;
}

.main__btn-P a {
    position: relative;
    z-index: 2;
    color: black;
    text-decoration: none;
    font-size: 1.5rem;
}

.main__btn-P:after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #4837ff;
    transition: all 0.35s;
    border-radius: 4px;
}

.main__btn-P:hover{
    color: black;
}

.main__btn-P:hover:after{
    width:100%;
}

.main__image--container-P{
    background-image: url("images/Space1.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

/* Contact Main */

.main-C{
    background-color: white;
}

.main__container-C{
    display: grid;
    align-items: center;
    justify-content: center;
    margin:0 auto;
    height: 40vh;
    z-index: 1;
    width: 100%;
    padding: 0 30px;  
}

.main__content-C{
    font-size: 1.5em;
    color: black;
    background-image: none;
    background-color: transparent;
    text-align: center;
    padding-bottom: 48px;
}

.main__content--header-C{
    margin-bottom: 36px;
}

.main__content--text-C{
    font-size: 1rem;
    color: #626262 ;
}

.main__btn-C{
    font-size: 1rem;
    padding: 14px 32px;
    border:none;
    border-radius: 4px;
    color: white;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
    background-color: black;
}

.main__btn-C a {
    position: relative;
    z-index: 2;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
}

.main__btn-C:after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: red;
    transition: all 0.35s;
    border-radius: 4px;
}

.main__btn-C:hover{
    color: black;
}

.main__btn-C:hover:after{
    width:100%;
}

/* CONTACT PAGE */

.contact__main{

}

.contact__container{
    background-color: black;
}

.contact__header{
    padding: 70px 40px;
    text-align: center;
    font-size: 4rem;
    background-color: white;
    background-image: linear-gradient(to top, gray 0%, white 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.contact__container--text{
    display: flex;
    gap: 5em;
    justify-content: center;
}

.contact__category{
    color:#3a96b8;
    padding: 70px;
    font-weight: bold;
}

.contact__text{
    color:#626262;
    padding-top: 50px;
    font-weight: normal;
}

.contact__form--error{
    color: red;
    text-align: center;
    display: none;
}

.contact__form--container{
    margin:0 350px;
    font-size: 2rem;
}

.contact__form--title{
    font-size: 3rem;
    text-align: center;
    background-color: white;
    background-image: linear-gradient(to top, gray 0%, white 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: black;
}

.contact__form--input{
    border: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    background: #f8f4e5;
    padding-left: 5px;
    outline: none;
    display: block;
    width: 25%;
    font-size: 12pt;
    line-height: 24pt;
    margin-bottom: 20px;
}

.contact__form--text{
    border: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    background: #f8f4e5;
    padding-left: 5px;
    outline: none;
    display: block;
    width: 100%;
    font-size: 12pt;
    line-height: 24pt;
}

.contact__form--label{
    display: block;
    width: 100%;
}

.contact__form--button{
    font-size: 1rem;
    padding: 14px 32px;
    border:none;
    border-radius: 4px;
    color: white;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
    background-color: black;
}

.contact__form--button a {
    position: relative;
    z-index: 2;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
}

.contact__form--button:after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: red;
    transition: all 0.35s;
    border-radius: 4px;
}

.contact__form--button:hover{
    background-color:#3a96b8;
    color: black;
}

.contact__form--button:hover:after{
    width:100%;
}

/* ABOUT PAGE */

.about__main{

}

.about__container{
    background-color: black;
}

.about__header{
    padding: 70px 40px;
    text-align: center;
    font-size: 4rem;
    background-color: white;
    background-image: linear-gradient(to top, gray 0%, white 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.about__text--container{
    background-color: #d74040;
    display:flex;
    justify-content: center;
}

.about__img{
    margin:100px;
    width:20%;
    height: 20%;
}

.about__text{
    width:50%;
    margin: 50px;
    color: rgb(213, 213, 213);
    font-size: 1.25rem;
    line-height:32px;
}

/* GAMES PAGE */

.games__main{

}

.games__container{
    background-color: black;
}

.games__header{
    padding: 70px 40px;
    text-align: center;
    font-size: 4rem;
    background-color: white;
    background-image: linear-gradient(to top, gray 0%, white 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.games__section--container{
    margin: 5% 20% 0 20%;
    color:gray
}

.games__section--header{
    display: flex;
    font-size: 3rem;
    padding-bottom: 16px;
}

.games__section--text{
    font-size: 1.5rem;
    max-width: 50%
}

.games__section--mainImageContainer{
    display: flex;
    padding-bottom: 32px;
}

.games__section--triImageContainer{
    display: flex;
    padding-bottom: 128px;
}

.games__section--mainImage{
    max-width: 50%;
    padding-left: 16px;
    justify-self: center;
}

.games__section--triImage{
    width:33.33%;
    padding: 0 16px;
}

.games__section--quadImage{
    width: 25%;
    padding: 0 16px;
}

/* Mobile Responsive */

@media screen and (max-width: 768px) {
    .main__container{
        display:grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        width: 100%;
        margin: 0 auto;
        height: 90vh;
    }

    .main__content{
        text-align: center;
        margin-bottom: 4rem;
    }

    .main__content--header{
        font-size: 2.5rem;
        margin-top: 2rem;
    }

    .main__content--text{
        font-size: 3rem;
    }
}

@media screen and (max-width: 480px) {
    .main__content--header{
        font-size: 2rem;
        margin-top: 3rem;
    }

    .main__content--text{
        font-size: 2rem;
    }

    .main__btn{
        padding:12px 36px;
        margin: 2.5rem 0;
    }
}