/* General */


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');


:root {
    --MainColor: rgb(255, 255, 255);
    --SecondaryColor: rgb(255, 153, 153);
    --DarkestColor: rgb(0, 48, 73);
    --AccentColor: rgb(120, 0, 0);
    --AccentBorder: rgb(62, 0, 0);
    --ContainersColor: rgb(228, 206, 206);

    --Black: rgb(0, 0, 0);
    --White: rgb(255, 255, 255);
    --DarkGrey: rgb(65, 65, 65);
    --LightGrey: rgb(190, 190, 190);

    --TextColor1: rgb(109, 109, 109);
    --TextColor2: rgb(0, 0, 0);;
    --ParagraphColor: rgb(85, 85, 85);
    --TextColorTitle: rgb(0, 0, 0);


    --ModalBackColor: #333;
    --BackgrounColor: rgba(0,0,0,0.9);
}


/* #9db9e3
#a39d91
#f0e7d5
#949ca8
#4d3f24
#1c2830 */


/* this sets it for the whole webpage, so that later changes are applied everywhere */
* { 
    margin: 0;
    padding: 0;
}

body{
    font-family: "Poppins", serif;     
    background-color: var(--MainColor);
    max-width: 100%;
    overflow-x: hidden;
    
}

html{
    scroll-behavior: smooth;
}

p { 
    /* color : rgb(85, 85, 85); */

    color: var(--ParagraphColor);
}



/* Image galleries */

.scroll-container {
    background-color: --ModalBackColor;
    border-radius: 10px;
    overflow: auto;
    white-space: nowrap;
    padding: 5px;
}
  
.scroll-container-img {
    padding: 10px;
    border-radius: 1rem;
    width: 50%;
    height: 50%;
}






/* ///////////////MODALS////////////////// */

 /* Style the Image Used to Trigger the Modal */
 #myImg {
    border-radius: 1rem;
    cursor: pointer;
    transition: 0.3s;
    width: 30%;
    height: 90%; 
    min-width: 20rem;
  }
  
  #myImg:hover {opacity: 0.7;}
  
  /* The Modal (background) */
  .modal-img {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: var(--ModalBackColor); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
    

    min-width: 17rem;
  }

  .modal-containers {
    gap: 2rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
    
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: center;
    
    

  }


  
  /* Modal Content (Image) */
  .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
  }
  
  /* Caption of Modal Image (Image Text) - Same Width as the Image */
  #caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
  }
  
  /* Add Animation - Zoom in the Modal */
  .modal-content, #caption {
    animation-name: zoom;
    animation-duration: 0.6s;
  }
  
  @keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
  }
  
  /* The Close Button */
  .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* 100% Image Width on Smaller Screens */
  @media only screen and (max-width: 700px){
    .modal-content {
      width: 100%;
    }
  } 

    img.hover-shadow {
    transition: 0.3s;
    height: 100%;
    width: 100%;
    }

    /*/////AddedLightbox//////////*/


.row > .column {
  padding: 0 8px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Create four equal columns that floats next to eachother */
.column {
  float: left;
  width: 25%;

}

/* The Modal (background) */
.carousel {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

/* Modal Content */
.carousel-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}

/* The Close Button */
/* Located with modal */

/* Hide the slides by default */
.mySlides {
  display: none;
}

.mySlides1, .mySlides2, .mySlides3 {
  display: none;
  width: 100%;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;

}

/* Position the "next button" to the right */
.next {
  right: 0;
  /* transform: translateY(50%); */

  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Caption text */
.carouselCaption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

img.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
  height: 100%;
  width: 100%;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}










/*//////////////SlideShow//////////////////*/
* {box-sizing:border-box}

/* Slideshow container */
/* .slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  flex-direction: column;
  min-height: 50vh;
  height: fit-content;
  aspect-ratio: 16/9;
} */

.prevSlides, .nextSlides {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  user-select: none;
  z-index: 10; /* ensures buttons appear above images */
}

/* Left arrow */
.prevSlides {
  left: 0;
  border-radius: 0 3px 3px 0;
}

/* Right arrow */
.nextSlides {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prevSlides:hover, .nextSlides:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  margin-top: 3px;
}

.dot-group1, .dot-group2, .dot-group3 {
    padding-top: 1.5rem;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

















/* TRANSITION */


a, .btn {
    transition: all 300 ms ease;
    /* text-decoration: none; */
}

/* DESKTOP NAV */

nav, .nav-links {
    /* Flexbox: displays items certain way: 
    https://css-tricks.com/snippets/css/a-guide-to-flexbox/ */
    display: flex;
}

nav {
    justify-content: space-around;
    align-items: center;

    /* vh = vieuw hight: stays 17% on any screen 
    !!! in percentage !!!*/
    height: 17vh;
    background-color: var(--LightGrey);
}

.nav-links {
    /* rem: pixels but not pixels */
    gap: 2rem;
    list-style: none;
    font-size: 1.5rem;
}

a {
    color: black;
    text-decoration: none;
    text-decoration-color: white;
}

a:hover {
    color: grey;
    text-decoration: underline;
    text-underline-offset: 1rem;
    text-decoration-color: rgb(181, 181, 181);
}

.logo {
    font-size: 2rem;
}

/* .logo:hover {
    cursor: default;
} */

.logo:hover {
    cursor: pointer;
}

/* HAMBURGER MENU */
#hamburger-nav {
    display: none;
}

.hamburger-menu {
    position: relative;
    display: inline-block;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    cursor: pointer;
}


/* this is one of the 3 lines in the hamburger menu.
Settings are in the one abovethis collection */
.hamburger-icon span {
    width: 100%;
    height: 2px;
    background-color: black;
    transition: all 0.3 ease-in-out;
}

.menu-links {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--LightGrey);
    width: fit-content;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3 ease-in-out;
    z-index: 10;
}

.menu-links a {
    display: block;
    padding: 10px;
    text-align: center;
    font-size: 1.5rem;
    color: black;
    text-decoration: none;
    transition: all 0.3 ease-in-out;
}

.menu-links li {
    list-style: none;
}

.menu-links.open {
    max-height: 300px;
}

.hamburger-icon.open span:first-child {
    transform: rotate(45deg) translate(10px, 5px);
}
.hamburger-icon.open span:nth-child(2) {
    opacity: 0;
}
.hamburger-icon.open span:last-child {
    transform: rotate(-45deg) translate(10px, -5px);
}

.hamburger-icon span:first-child {
    transform: none;
}
.hamburger-icon span:first-child {
    opacity: 1;
}
.hamburger-icon span:first-child {
    transform: none;
}


/* SECTIONS */


/* section {
    padding-top: 4vh; 
    height: 96vh;
    margin: 0 10rem; 
    box-sizing: border-box; 
    min-height: fit-content;
} */

section {
    padding-top: 0vh; 
    height: fit-content;
        
    
}

.section-background-seperator {
    
    margin: 0 5rem; 
    box-sizing: border-box; 
    min-height: fit-content;
} 
.section-background-seperator-game {
    
    margin: 0rem; 
    box-sizing: border-box; 
    min-height: fit-content;
} 

.section-container {
    display: flex;
}

/* PROFILE SECTION */

#profile {
    display: flex;
    justify-content: center;
    gap: 5rem;
    height: 80vh;
    padding-top: 4vh;
    /* padding-bottom: 4rem; */
    /* background-color: blue ; */
    
}

.section__pic-container {
    display: flex;
    height: 400px;
    width: 400px;
    margin: auto 0;
}

.section__text {
    align-self: center;
    text-align: center;
}

.section__text p {
    font-weight: 600;
}

.section__text__p1 {
    text-align: center;
    color: var(--TextColor1);
}

.section__text__p2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--TextColor2);
    text-align: center;
    padding-right: 2rem;
    padding-left: 2rem;

}

.title {
    font-size: 3rem;
    text-align: center;
    

    color: var(--TextColorTitle);
}

#socials-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 1rem;
}

/* ICONS */

.icon {
    cursor: pointer;
    height: 2rem;
}

/* BUTTONS */


.btn-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    /* padding-top: 1rem;
    padding-bottom: 1rem; */


}

.btn {
    font-weight: 600;
    transition: all 300ms ease;
    padding: 1rem;
    width: 8rem;
    border-radius: 2rem;

}

.btn-color-1, .btn-color-2 {
    /* border: rgb(28, 40, 57) 0.1rem solid; */
    border: var(--AccentBorder) 0.1rem solid;
}

.btn-color-1:hover, .btn-color-2:hover {
    cursor: pointer;
}
.btn-color-1, .btn-color-2:hover {
    background: var(--AccentColor);
    /* color: white; */
    color: var(--MainColor);


    /* background: rgb(53, 53, 53);
    color: white; */
}

.btn-color-1:hover {
    /* background: rgb(0, 0, 0); */
    /* background: rgb(28, 40, 57) */
    background: rgb(0, 0, 0);
    /* background: AccentColor; */
}

.btn-color-2 {
    background: white;
}

.btn-color-2:hover {
    /* border: rgb(255, 255, 255); */
    border: var(--MainColor) 0.1rem solid;
}

.btn-container {
    gap: 1rem;
}









/* ABOUT SECTION */

#about {
    position: relative;
    background-color: var(--White);
    padding-top: 4vh;

}


.about-containers {
    gap: 2rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;


}

.about-details-container {
    justify-content: center;
    flex-direction: column;
}

.about-containers,
.about-details-container {
    display: flex;
}

.about-pic {
    border-radius: 2rem;
    border: rgb(53, 53, 53) 0.1rem solid;
    object-fit: cover;
    
}

.arrow {
    position: absolute;
    right: 2.5rem;
    bottom: 2.5rem;
}

.details-container {
    padding: 1.5rem;
    flex: 1;
    background: white;
    border-radius: 2rem;
    border: rgb(53, 53, 53) 0.1rem solid;
    border-color: rgb(163, 163, 163);
    text-align: center;
    max-width: 33rem;
}

.section-container {
    gap: 4rem;
    height: 80%;
}

.section__pic-container {
    height: 400px;
    width: 400px;
    margin: auto 0;
}

.about__pic-container {
    height: 400px;
    width: 400px;
    margin: 0 0;
}


/* EXPERIENCE SECTION */

#experience {
    position: relative;
    /* background-color: black; */
    height: fit-content;
    padding-top: 4vh;

    min-height: 96vh;

    background-color: var(--DarkGrey);


}

.experience-sub-title {
    color: rgb(85, 85, 85);
    font-weight: 600;
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.experience-title {
    color: rgb(235, 235, 235);
    font-weight: 600;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    

    font-size: 3rem;
    text-align: center;

}

.experience-details-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.article-container {
    display: flex;
    text-align: initial;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 2.5rem;
    justify-content: space-around;
    
}

article {
    display: flex;
    align-items: flex-start;
    width: 10rem;
    justify-content: flex-start;
    gap: 0.5rem
}

article.icon {
    cursor: default;
}


/* PROJECTS SECTION */

#projects1 {
    position: relative;
    height: fit-content;
    padding-top: 4vh;
    background-color: var(--LightGrey);

    min-height: 80vh;
}

#projects2 {
    position: relative;
    height: fit-content;
    padding-top: 4vh;
    background-color: var(--White);

    min-height: 96vh;
}

.project-spacer{
    height: 2rem;
    border: none;
    border-bottom: 5px solid var(--DarkGrey);
    /* margin-top: 0.5rem;
    margin-bottom: 1rem; */
}

.about-spacer{
    height: 4rem;
    border: none;
    border-bottom: 5px none var(--DarkGrey);
    /* margin-top: 0.5rem;
    margin-bottom: 1rem; */
}

.color-container {
    border-color: rgb(163, 163, 163);
    background: rgb(250, 250, 250);
}

.project-img {
    /* border-radius: 2rem;
    width: 90%;
    height: 90%;
    max-height: 500px; */

    /* width: 100%;
  height: 100%;
  object-fit: contain; /* fills the container while preserving aspect ratio */
  /* display: block;
  border-radius: 1rem; */

    width: 100%;
  height: 100%;
  object-fit: cover; /* ✅ zooms in and fills container */
  display: block;
    cursor: pointer;


}


.project-title {
    margin: 0rem;
    margin-top: 1rem;
    color: black;
}


.project-btn {
    color: black;
    border-color: rgb(163, 163, 163);
  text-decoration: none;
    
}

.project-btn:hover {
  text-decoration: none;
}

.project-container{

    padding: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    flex: 1;
    background: white;
    border-radius: 2rem;
    border: rgb(53, 53, 53) 0.1rem solid;
    border-color: rgb(163, 163, 163);
    text-align: center;

}

.project-button-container {
    padding: 1rem;
    width:fit-content;
    border-radius: 2rem;
    border: rgb(53, 53, 53) 0.1rem solid;
    
    /* 

    margin-top: 1.5rem;
    
    flex: 1;
    background: white;
    
    border-color: rgb(163, 163, 163);
    text-align: center; */

    display: flex;
    align-items: center;
    gap: 2rem;
    /* max-width: 1000px; */
    margin: auto;
    margin-bottom: 1.5rem;
    flex-direction: row;

    height: fit-content;
    width: fit-content;
    /* min-height: 300px; */
    justify-content: center;


}



.image-wrapper {
  width: 100%;

  /* height: 40rem; consistent height across all images */
  aspect-ratio: 16 / 9; /* or use fixed height if preferred */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000; /* adds a clean frame around images */
    border-radius: 1rem;
    cursor: pointer;
}

.slideshow-image {
  width: 100%;
  height: 100%;
  object-fit: contain; /* fills the container while preserving aspect ratio */
  display: block;
  border-radius: 1rem;
    cursor: pointer;
}

.slideshow-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  /* max-width: 1000px; */
  margin: auto;
  flex-direction: row;

  height: fit-content;
  /* min-height: 300px; */
  justify-content: center;

}

.slideshow-container {
  flex: 2;
  /* position: relative; */

  


  position: relative; /* anchors arrows and counter */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  /* aspect-ratio: 16/9; */
  /* min-height: 300px; */
  width: 100%;
  /* height: fit-content; */
}

.slideshow-text {
  flex: 1;
  font-family: sans-serif;
}


.slideCounter1, .slideCounter2 {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0,0,0,0.6);
  color: white;
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
  z-index: 10;
  font-size: 1rem;
}




/* CONTACT */


#contact {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-top: 4vh;

    height: 80vh;
}

.contact-info-upper-container {
    display: flex;
    justify-content: center;
    width: fit-content;
    border-radius: 2rem;
    border: rgb(53, 53, 53) 0.1rem solid;
    border-color: rgb(163, 163, 163);
    background: (250, 250, 250);
    margin: 2rem auto;
    padding: 0.5rem;
    
}

.contact-info-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem;
}

.contact-info-container p {
    font-size: larger;
}

.contact-icon {
    cursor: default;
}

.email-icon {
    height: 2.5rem;
}


/* FOOTER SECTION */

footer {
    height: 20vh;
    /*margin: 0.1rem;*/
}

footer p {
    text-align: center;
}

.nav-links-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
}


/*/////////////////////// ProjectList ///////////////////////////////*/



#games {
    position: relative;
    height: fit-content;
    min-height: 96vh;
}

/* ART */

#art {
    position: relative;
    height: fit-content;
    min-height: 96vh;
}


/* audio */

#sound {
    position: relative;
    height: fit-content;
    min-height: 96vh;
}


.project-list-container{
    margin: 3rem;
}




/*/////////////////////// GAMES ///////////////////////////////*/

/* Games list*/

.game-container1 {
    border-color: rgb(0, 0, 163);
    background: rgb(0, 250, 0);
}

.game-container2 {
    border-color: rgb(0, 163, 0);
    background: rgb(0, 0, 250);
}

.gridImage {
   width: 100%;
   /*height: 300px; consistent height across all images */
  aspect-ratio: 9 / 9; /*or use fixed height if preferred */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000; /* adds a clean frame around images */
    border-radius: 1rem;
    /* cursor: pointer; */
}

/*/////////////////////// GamePage ///////////////////////////////*/

/* Individual Game*/

#games-intro {
    position: relative;
    height: fit-content;
    /* height: fit-content; */
    min-height: 96vh;
}

#games-video {
    position: relative;
    height: fit-content;
    /* height: fit-content; */

    /* min-height: 96vh; */
}

#games-images {
    position: relative;
    height: fit-content;
    min-height: 96vh;
}

#games-description {
    position: relative;
    height: fit-content;
    min-height: 96vh;
}

#games-sketchfab {
    position: relative;
    height: fit-content;
    /* height: fit-content; */

    /* min-height: 96vh; */
}



.game-intro-background {
    display: flex;
    overflow: hidden;
    justify-content: center;
    flex-direction: column;
    
    object-fit: cover;
    
    position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;;
    
}

.game-intro-container-1{
    display: flex;
    justify-content: center;
    flex-direction: column;

}

.game-intro-container-1-text{

    background-color: #000000; 
    color: #fff; 
    padding: 10px 20px; 
    font-size: 20px; 

    position: absolute;
    bottom: 5rem;
    right: 5rem;

    flex-direction: row;

    justify-content: center;
    align-content: right;

    
}

.game-intro-container-1-item{
    background: none;
   
    bottom: 5rem;
    right: 5rem;

    width: 100%;
	height: 100%;

    flex-direction: row;

    
}

.parallelogram {
    
    width: 40rem;
	height: 100%;
    
    position: absolute;
    bottom: 0rem;
    right: 5rem;
    
    
    transform: translate(20rem, 0rem) skew(20deg);
    
	background: #555;
    opacity: 50%;
    
    
}

.parallelogram-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh; /* or whatever height you need */
z-index: -8;
}

.game-intro-container-1-text-title{

    background-color: #000000; 
    color: #fff; 
    padding: 10px 20px; 
    font-size: 20px; 
    font-size: 3rem;
    
    
}

.game-intro-container-1-text-body{

    background-color: #000000; 
    color: #fff; 
    padding: 10px 10px; 
    font-size: 20px; 
    max-width: 26rem;

    
    
}

.game-details-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 4rem;
    height: fit-content;
    /* max-width: 500px; */

    


}

.game-img {
    /* border-radius: 2rem;
    /* border-color: rgb(255, 255, 255); */
    width: 90%;
    height: 90%; 

    /*width: 350px; 
    height: 350px; */
    
    

    object-fit: cover;

    border-radius: 2rem;

}

.game-img-back {
   
    height: 100%;

    object-fit: none;
    display: block;
    justify-content: center;
    
    z-index: -10;

}

.game-img-back-origin {
    /* border-radius: 2rem;
    /* border-color: rgb(255, 255, 255); */
    /*width: fit-content;
    height: fit-content; */
   
    height: 10%;

    /*min-height: 100%;*/

    width: auto;

    display: block;

    margin-left: auto;
    margin-right: auto;

    position: relative center;
    
    /*object-position:;*/

    object-fit: none;
    justify-content: center;

    border-radius: 0rem;

}

.game-vid-container {
    display: flex;
    justify-content: center;
    margin: 0rem;
    border-radius: 2rem;
    gap: 1rem;

    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.game-vid {
    border-radius: 2rem;
    border-color: rgb(255, 255, 255);

    /*width: 90%;
    height: 90%; */

    /* width: 1380px; 
    height: 720px;
    
    padding-top: auto;
    margin: 0rem;
    
    object-fit: cover;

    border-radius: 2rem; */

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.game-image-details-container {
    padding:1.5rem;
    flex: 1;
    
    background-color: none;
    text-align: center;
}


.game-title {
    margin: 2rem;
    margin-bottom: 1rem;
    color: black;
    font-size: 3rem;
    text-align: center;

    
}

.game-sub-title {
    color: rgb(85, 85, 85);
    font-weight: 600;
    font-size: 1.75rem;
    margin: 0rem;
    margin-bottom: 2rem;
    text-align: center;
}

.game-btn {
    color: white;
    border-color: rgb(163, 163, 163);
}


.game-sketchfab-container {
    /* display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0rem;
    border-radius: 2rem;
    gap: 1rem;

    position: relative;
    height: 96vh;
    max-height: 80vh;
    width: auto; */

    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    gap: 1rem;

    position: relative;
 
    /* padding-bottom: 56.25%; 16:9 */


    
}

.sketchfab-embed-wrapper{

    padding: 10rem, 10rem;
    
    width: 100%;
    overflow: hidden; 
    max-height: 650px;


    aspect-ratio: 16 / 9;
    margin: 0rem;
    
    
    justify-content: center;
    /* object-fit: cover; */

    border-radius: 2rem;
    border-color: rgb(255, 255, 255);

    /* width: 100%; */
    /* aspect-ratio: 16 / 9; */
    


    /* gap: 2rem; */
    
    
}

.sketchfab-embed-wrapper iframe {
  
  width: 100%;
  height: 100%;
  
  aspect-ratio: 16 / 9;
  justify-content: center;
  

}


