@font-face {
  font-family: 'Mostwasted';
  src: url('Font/Mostwasted.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'MONO';
  src: url('Font/MONO.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

:root {
 --black:     #292829;
--darkBlack:     #181718;
 --red :      #a65a66;
 --blue:      #677b80;
 --green:     #748530;
 --yellow:    #c4a44d;
 --darkTan:   #bdb099;
 --lightTan:  #d6c0ae;
}

body {
  font-family: 'MONO', sans-serif;
  background-color: var(--black);
  color: var(--lightTan);
  width: 50%;
  margin:auto;  
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.siteHeader img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}

/* for heading texts */
.mainHeadingTitle {
  font-family: 'Mostwasted', sans-serif;
  letter-spacing: 0px;
  font-size: 100px;
  text-align: center;
}

.mainHeadingTitle h1 {
    margin: 0;
}

.pageHeadingTitle {
  font-family: 'Mostwasted', sans-serif;
  letter-spacing: 0px;
  font-size: 80;
  text-align: center;
}

.pageHeadingTitle h1 {
    margin: 0;
}

/* all other texts */
.intro {
  font-size: 20px;
  text-align: left;
  padding-left: 20px;
  padding-right: 20px;
}

.subText {
  font-size: 16px;
  text-align: center;
}

/* main navigation cards */
.navCardsGroup {
  display: flex;
  flex-direction: row;
}

.navCard img {
  width: 100%;
  height: auto;
}

.navCard {
  transition: transform 0.3s ease;
}

.navCard:hover{
  transform: translate(0px, -10px);
}

/* footer */
.footerLinksGroup {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 20px;
}

.footerLine {
  border: none;
  border-top: 2px solid var(--lightTan);
  margin-top: 40px;
}

.footerLink a {
  font-size: 20px;
  text-align: center;
  color: var(--darkTan);;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footerLink a:hover {
  color: var(--yellow);;
  text-decoration: underline;
}

/* divider stuff */
.dividerLine {
  border: none;
  border-top: 2px solid var(--lightTan);
}

.smallDividerLine {
  border: none;
  margin-top: 48px;
  border-top: 1px solid var(--lightTan);
  width: 200px;
}

/* fun zone */
.funZoneLinksGroup {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  flex-direction: column;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.funZoneLink a {
  font-size: 28px;
  text-align: center; 
  text-decoration: none;
  transition: 0.3s ease;
  color: var(--darkTan);
}

.funZoneLink a:hover {
  font-size: 32px;
  text-decoration: underline;
  color: var(--yellow);
}

/* pickle cards */
.pickleCollab88X31Group {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-direction: row;
}

.pickleCollab88X31Group button {
  border: none;
  background: none;
  transition: transform 0.3s ease;
}

.pickleCollab88X31Text{
  text-align: center;
  margin-bottom:40px;
}

.pickleButton:active{
  transform: translateY(2px) scale(0.95);
  filter: brightness(1.3);
}

/* go to home button */
.homeText a {
   position: absolute; top: 0px; right: 12px;
  font-size: 24px;
  color: var(--darkTan);
  transition: 0.3s ease;
}

.homeText a:hover {
  color: var(--yellow);
}

.backText a {
   position: absolute; top: 0px; left: 12px;
  font-size: 24px;
  color: var(--darkTan);
  transition: 0.3s ease;
}

.backText a:hover {
  color: var(--yellow);
}

/* art page */
.galleryGroup {
  padding: 40px 28px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery {
  columns: 3 240px;
  column-gap: 16px;
}

.pixelArt {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  break-inside: avoid;
  margin-bottom: 16px;
  display: block;
}

.pixelArt img {
  width: 100%;
  height: auto;
  image-rendering: pixelated;
  transition: 0.3s ease;
}

.pixelArt img:hover{
  filter: brightness(1.1);
}


.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
}

.modalContent {
  max-width: 90%;
  max-height: 90%;
  image-rendering: pixelated;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: var(--darkTan);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: var(--yellow);
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--darkTan);
  font-size: 40px;
  padding: 20px;
  cursor: pointer;
}

.arrow:hover {
  color: var(--yellow);
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

/* body size variants */
.fullPageSize{
  width:100%;
}

.pickleCardPageSize{
  /* width:60% 
  confused between 60/default/100 */
}

/* links stuff */
.linkHeading {
  font-family: 'Mostwasted', sans-serif;
  letter-spacing: 8px;
  font-size: 60;
  margin-top: 24px;
  margin-bottom: 24px;
  text-align: center;
  color: var(--yellow);
}

.linkElementsGroup {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.linkElement {
  font-size: 24px;
  text-align: center;
}

.linkElement a {
  font-size: 28px;
  text-decoration: none;
  transition: 0.3s ease;
  color: var(--darkTan);
}

.linkElement a:hover {
  font-size: 32px;
  text-decoration: underline;
  color: var(--yellow);
}

/* my button */
.buttonsElementsGroup {
  display: flex;
  flex-direction: row;
  gap: 0px;
  margin-bottom: 48px;
  justify-content: center;
  flex-wrap: wrap;
}
  
.myButton  {
  display: block;
  margin: 0 auto;
}

.myButton:active{
  transform: translateY(2px) scale(0.95);
  filter: brightness(1.3);
}

.myButtonText{
  text-align: center; 
}

/* fun page internalts */
.pageIntroText {
  margin-top: 24px;
  margin-bottom: 24px;
  text-align: center;
  font-size: 24px;
}
  
.funGroup{
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-wrap: wrap;
}
  
.funRowGroup{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
}

.funEntryTitle {
  font-size: 28px;
  color: var(--lightTan);
}

.funEntryTitle a {
  font-size: 28px;
  text-decoration: none;
  transition: 0.3s ease;
  color: var(--darkTan);
}

.funEntryTitle a:hover {
  font-size: 32px;
  text-decoration: underline;
  color: var(--yellow);
}

.funEntrySubtitle {
  font-size: 20px;
  text-decoration: none;
  color: var(--blue);
}

/* Books */  
.bookRating5 {
  color: var(--red);
  font-size: 36px;
  margin-top: 24px;
  margin-bottom: 24px;
}
  
.bookRating4 {
  color: var(--red);
  font-size: 32px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.bookRating3 {
  color: var(--red);
  font-size: 28;
  margin-top: 24px;
  margin-bottom: 24px;
}

.bookRating2 {
  color: var(--red);
  font-size: 24;
  margin-top: 24px;
  margin-bottom: 24px;
}

.bookRating1 {
  color: var(--red);
  font-size: 20;
  margin-top: 24px;
  margin-bottom: 24px;
}
  
.funEntryDesc {
  color: var(--darktan);
  font-size: 20px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.funGuestbook iframe {
  margin: 0 auto;
  display: block;
  width: 50%;
  height: 720px;
}

.demoReel {
  margin-top: 24px;
  margin-bottom: 24px;
  text-align: center;
  font-size: 24px;

}

.demoReel a {
  color: var(--darkTan);
}


.demoReel a:hover {
  color: var(--yellow);
}


.workSectionHeading {
  font-family: 'Mostwasted', sans-serif;
  letter-spacing: 12px;
  font-size: 64;
  margin-top: 24px;
  margin-bottom: 24px;
  text-align: center;
  color: var(--yellow);
}

/* games */

.workSectionBreak{  
  margin-top: 24px;
  margin-bottom: 24px;
}

.gamesIntro {
  font-size: 20px;
  text-align: left;  
}
  
.gamesGroup{
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 48px;
  background-color: var(--darkBlack);
  padding: 1rem 1rem 2rem;
}
  
.gameName{
  font-size: 32px;
  margin-top: 2px;
  margin-bottom: 2px;
  color: var(--yellow);
}
  
.gameLink{
  font-size: 20px;
  margin-top: 2px;
  margin-bottom: 2px;
}

.gameLink a {
  color: var(--blue);
  text-decoration: underline;
}

.gameLink a:hover{
  color: var(--green);
}
  
.gameDesc{
  font-size: 20px;
  margin-top: 2px;
  margin-bottom: 2px;
}

.gameToolsUsed{
  font-size: 16px;
  margin-top: 4px;
  margin-bottom: 4px;
  color: var(--red);
}

.gameTools{
  font-size: 16px;
  margin-top: 4px;
  margin-bottom: 4px;
  color: var(--darkTan);
}

span .gameName, .gameLink, .gameDesc, .gameTools, .gameToolsUsed
{
  display: block;
}

.featuredGamesGroup{
  display: flex;
  flex-direction: row;
  margin-top: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%
}

.featuredGamesGroup iframe{
  transition: transform 0.3s ease;
  width:60%;
}

.featuredGamesGroup iframe:hover{
  transform: translate(0px, -4px);
  filter: brightness(1.1);
}

.inlineLink  {
  font-size: 20px;
  color: var(--blue);
  text-decoration: underline;
}

.inlineLink:hover{
  color: var(--green);
}

.inlineBreak {
  margin-top: 12px;
  margin-bottom: 12px;
}

.contactLink {
  font-size: 20px;
  color: var(--yellow);
  text-decoration: underline;
}


.contactLink:hover {
  color: var(--red);
}
 
.contactPageText{
  font-size: 20px;
}

/* -------------------------------mobile------------------------- */
@media (max-width: 600px) {
  
  .gallery {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
  }
  
  .pixelArt img {
    width: 100%;
    height: auto;
  }
  
  /* main navigation cards */
  .navCardsGroup {
  display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  
  .navCard img {
  width: 40%;
  justify-content: center;
  margin: 0 auto;
  display:block;
  }
  
  body {
    width: 90%;
  }
  
  .mainHeadingTitle {
  font-size :14vw
  }
  
  .pageHeadingTitle, h1
  {
    font-size: 12vw;
    margin-top:12px;
  }

  .intro {
    font-size: 4vw;
  }
  
  .footerLinksGroup {
    flex-wrap: wrap;
  }
  
  .funZoneLinksGroup {
    gap: 20px 40px;
    justify-content: center;
  }
  
  /* links stuff */
  .linkHeading {
  font-size: 8vw;
  }

  .pickleCollab88X31Group {
    flex-wrap: wrap;
  }

  .galleryGroup {
    padding: 20px 8px 60px;
  }
  
  .navCardsGroup {
  display: flex;
  gap: 10px;
  flex-direction: column;
  flex-wrap:wrap;
  }
  
  .kofi{
  display:none;
  }

  .dividerLine {
  width: 100%;
  }

  .smallDividerLine {
  width: 60%;
  }
  
  .funGuestbook iframe {
  margin: 0 auto;
  display: block;
  width: 100%;
  height: 100vh;
  }
  
}
