*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background: linear-gradient(#ff6f01, #fed800);
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

header .logo-header {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 2em;
    text-transform: capitalize;
    letter-spacing: 2px;
}

.logo-icon {
    width: 80px;
    height: 70px;
}

header ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

header ul li {
    list-style: none;
    margin-left: 20px;
}

header ul li a {
    text-decoration: none;
    padding: 6px 15px;
    color: #fff;
    border-radius: 20px;
}

header ul li a:hover {
    background-color: #fff;
    color: #ff6f01;
}

.active  {
    background-color: #fff;
    color: #ff6f01;
}


/* Background */
section {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, #21110f, transparent);
    z-index: 1000;
}

#clouds {
    position: absolute;
    top: -15%;
    width: 80%;
    height: 80%;
    mix-blend-mode: screen;
    opacity: .5;
}

#sun {
    position: absolute;
    left: 42%;
    width: 15%;
    height: 30%;
}

#mountain_back {
    position: absolute;
    left: 15%;
    width: 80%;
    height: 88%;
}

#mountain_front {
    position: absolute;
    top: -20%;
    width: 100%;
    height: 120vh;
}

section img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    object-fit: fill;
}

#text {
    position: absolute;
    right: -17%;
    color: #fff;
    white-space: nowrap;
    font-size: 5vw;
}


#btn {
    text-decoration: none;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 40px;
    background: #fff;
    color: #ff6f01;
    font: 1.5em;
    transform: translateY(100px);
    cursor: pointer;
    z-index: 1;
}

/* Background End */

/* Content */
#advertisement {
    position: relative;
    background-color: #21110f;
    width: 100%;
    padding: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fed800;
    text-align: center;
}

#advertisement h2 {
    font-weight: bold;
    font-size: 50px;
    letter-spacing: 10px;
}

.adver-text {
    margin: 5% 10%;
    font-size: 20px;
    letter-spacing: 2px;
}

.adver-text1 {
    margin: 2% 10%;
    font-size: 20px;
    letter-spacing: 2px;
}

.adver-text2 {
    margin: 5% 10%;
    font-size: 22px;
    letter-spacing: 2px;
}

/* colors: 210002 ff8101 ffaf00 */

/* Button for Game */
.game-link {
    position: relative;
    margin-top: 2.5%;
    font-size: 20px;
    text-decoration: none;
    color: #ffaf00;
    background-color: #ffaf00;
    letter-spacing: 1px;
    padding: 15px 20px;
    transition: 0.5s;
}

.game-link:hover {
    letter-spacing: 4px;
    background: var(--clr);
    color: var(--clr);
    box-shadow: 0, 0, 35px var(--clr);
}

.game-link::before {
    content: '';
    position: absolute;
    inset: 2px;
    background: #21110f;
}

.game-link span {
    position: relative;
    z-index: 1;
}

.game-link i {
    position: absolute;
    inset: 0;
    display: block;
}

.game-link i::before {
    content: '';
    position: absolute;
    left: 80%;
    top: -6px;
    width: 15px;
    height: 10px;
    border: 2px solid #FCF55F;
    background: #21110f;
    transform: translateX(-50%);
    transition: 0.5s;
}

.game-link:hover i::before {
    width: 20px;
    left: 20%;
    border: 2px solid var(--clr);
}

.game-link i::after {
    content: '';
    position: absolute;
    left: 20%;
    bottom: -6px;
    width: 15px;
    height: 10px;
    border: 2px solid #FCF55F;
    background: #21110f;
    transform: translateX(-50%);
    transition: 0.5s;
}

.game-link:hover i::after {
    width: 20px;
    left: 80%;
    border: 2px solid var(--clr);
}
/* Button for game end */

/* Game Highlight */
.game-high-con {
    background-color: #fed800;
}

.game-highlight {
    font-size: 30px;
    letter-spacing: 4px;
    text-align: center;
    font-weight: bold;
    color: #21110f;
}

.video-container {
    background-color: #21110f;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video {
    width: 65%;
    height: 70%;
    margin-top: 4%;
    margin-bottom: 3%;
}

.game-description {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    background-color: #21110f;
    color: #fed800;
    padding-bottom: 8%;
}

.game-description h3 {
    font-size: 26px;
    padding-top: 5%;
    width: 65%;
}

.game-desc-container {
    width: 60%;
    margin-top: 4%;
    font-size: 20px;
    display: flex;
    justify-content: center;
    letter-spacing: 1px;
}

.desc-contain {
    width: 50%;
    margin-right: 5%;
}

.paragraph-1 {
    margin-bottom: 35px;
}

.desc-contain-1 {
    width: 50%;
    margin-left: 5%;
    margin-right: 2%;
}

.paragraph-3 {
    margin-bottom: 35px;
}
/*Chevron Button*/

.chevron-container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 20%;
    background-color: #21110f;
    text-decoration: none;
    padding-bottom: 2%;
}

.chevron {
    position: relative;
    height: 40px;
    width: 250px;
    font-weight: bold;
}

.chevron::before, .chevron::after {
    content: '';
    position: absolute;
    top: 0;
    width: 50%;
    background: #ff6f01;
    height: 100%;
}

.chevron::before {
    left: 0;
    transform: skew(0deg, 6deg);
}

.chevron::after {
    right: 0;
    transform: skew(0deg, -6deg);
}

.chevron-text {
    position: absolute;
    top: 22%;
    left: 17%;
    z-index: 5;
    color: #21110f;
    text-decoration: none;
}

.chevron-text-1 {
    position: absolute;
    top: 22%;
    left: 13%;
    z-index: 5;
    color: #21110f;
    text-decoration: none;
}

.chevron-text:hover, .chevron-text-1:hover {
    color: #f3f2ee;
}
/*Chevron Button End*/
/*Images section*/

.game-image-container {
    background-color: #21110f;
    padding-top: 7%;
    padding-bottom: 1%;
}

.game-con-upper, .game-con-lower {
    margin-bottom: 3%;
    margin-left: 7%;
}

.game-image {
    width: 40%;
    height: 30%;
    margin-left: 4%;
    filter: brightness(70%);
    transition: filter .3s ease;
}

.game-image:hover {
    filter: brightness(100%);
}
/*Images section end*/
/* Quote Section */
.qoute-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #21110f;
    color: #fed800;
}

.qoute {
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    font-size: 35px;
    letter-spacing: 3px;
    line-height: 45px;
    margin-bottom: 2.5%;
    text-align: center;
}

.qoute-text {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: 'Times New Roman', Times, serif;
    color: #ac4c03;
}

.button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #21110f;
    padding-top: 7%;
}

.button-about {
    position: relative;
    color: #fed800;
    background-color: #2e1604;
    width: 400px;
    height: 50px;
    margin: 10px 0;
    text-align: center;
    letter-spacing: 2px;
    font-weight: bold;
    padding-top: 10.5px;
    text-decoration: none;
}

.button-about::after, .button-about::before {
    border: 3px solid #af520a;
    content: '';
    position: absolute  ;
    top: 0;
    left: 0;
    z-index: 5;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    transition: transform 0.3s ease;
}

.button-about:hover::after {
    transform: translate(-4px, -4px);
}

.button-about:hover::before {
    transform: translate(4px, 4px);
}

.flag-img {
    width: 100px;
    height: 80px;
    margin-left: 20px;
    margin-right: 20px;
}

/* Quote Section End*/
/* Footer Section */
footer {
    text-align: center;
    font-size: 20px;
    padding-top: 6%;
    background-color: #21110f;
}

.footer-text {
    letter-spacing: 1px;
    font-family: 'Times New Roman', Times, serif;
    color: #ac4c03;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1%;
}

.it-logo {
    width: 20%;
    height: 18%;
}

.supremo-logo {
    width: 17%;
    height: 180px;
}

/* Footer Section End*/

/* Content End */


/* About */
.team-container {
    background-color: rgb(39, 38, 38);
    height: 40vh;
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
}

.team-background {
    background-color: lightblue;
    height: 90%;
    width: 80%;
    margin: auto;
    transform: skew(-15deg);
    display: flex;
}

.team-container .team-background .members {
    background-color: brown;
    width: 100%;
    height: 100%;
    border: 2px solid black;
    overflow: hidden;
}

/** Images **/
.profile-1 {
  width: 140%;
  height: 110%;
  position: relative;
  top: -10%;
  transform: skew(15deg);
  margin-left: -20%;
}

.profile-2 {
    width: 140%;
    height: 110%;
    position: relative;
    top: -10%;
    transform: skew(15deg);
    margin-left: -20%;
}

.profile-6 {
    width: 140%;
    height: 110%;
    position: relative;
    top: -10%;
    transform: skew(15deg);
    margin-left: -20%;
}

/** Design **/
.members .front-cover {
    position: absolute;
    top: 46%;
    width: 16.5%;
    height: 55%;
    background: linear-gradient(to top, rgb(45, 3, 59), transparent);
    z-index: 2;
    opacity: 1;
    font-family: Poppins;
    font-weight: bold;
    color: #B4CDE6;
}

.members .name {
    transform: skew(15deg);
    text-align: center;
    margin-top: 45%;
    line-height: 20px;
}

.logo {
   width: 45px;
   height: 40px;
   position: absolute;
   top: -85%;
   right: 0;
   transform: skew(10deg);
}

/** Hover **/
.front-hover {
    position: absolute;
    background-color: blue;
    top: 0;
    z-index: 3;
    width: 16.3%;
    height: 100%;
    opacity: .9;
}

.prof-icon {
    margin-top: 15px;
    width: 25%;
    height: 25%;
    transform: skew(15deg);
    position: relative;
    left: 35%;
    top: 20%;
    filter: invert(1);
    opacity: .8;
}

.prof-label {
    font-size: 15px;
    font-family: Poppins;
    font-weight: bold;
    transform: skew(15deg);
    color: white;
    letter-spacing: 5px;
    opacity: .8;
}

.label-1, .label-6 {
    position: relative;
    left: 30%;
    top: 20%;
}

.label-2 {
    position: relative;
    left: 5%;
    top: 20%;
}

.label-3, .label-4 {
    position: relative;
    left: 20%;
    top: 20%;
}

.label-5 {
    position: relative;
    left: 7%;
    top: 21%;
}

.front-hover:hover {
    opacity: 0;
    transition: 0.8s;
}
/* About End */

/* Fade Transition */


