
body {
  margin: 0;
  padding: 0;
}


.pixelfont {
  font-family: "Pixelify Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.vt323-regular {
  font-family: "VT323", monospace;
  font-weight: 400;
  font-style: normal;
}

/* horizontal scrolling borrowed from chatGPT*/
.horizontal-scrolling {
  width: 5000px;
  height: 100vh; 
  overflow-x: auto; 
  white-space: nowrap; 
  background-image: url('./images/pixel-background-long.jpeg');
  background-size: auto 100%; 
  background-repeat: no-repeat; 
}

h1 {
  font-size: 5em;
  margin-bottom: 0;
}

h2 {
  font-size: 3em;
  margin-top: 0;
}

h3 {
  font-size: 1.8em;
}

.title-container {
  display: flex;
  justify-content: flex-start; 
  align-items: center; 
  padding-left: 2em;
} 

.welcome-container {
  display: flex;
  justify-content: flex-start; 
  align-items: center; 
  padding-left: 1em;
}

.subtitle-container {
  display: flex;
  justify-content: flex-start; 
  align-items: center; 
}


.btn-container {
  position: absolute;
  text-align: center;
}

.return-btn {
  margin-left: 2em;
}

.week1-btn {
  margin-left: 85em;
  bottom: 8em;
}

.week2-btn {
  margin-left: 110em;
  bottom: 8em;
}

.week3-btn {
  margin-left: 135em;
  bottom: 8em;
}

.week4-btn {
  margin-left: 160em;
  bottom: 8em;
}

.week5-btn {
  margin-left: 185em;
  bottom: 8em;
}

.week6-btn {
  margin-left: 210em;
  bottom: 8em;
}

.week7-btn {
  margin-left: 235em;
  bottom: 8em;
}

.week8-btn {
  margin-left: 260em;
  bottom: 8em;
}

.week9-btn {
  margin-left: 285em;
  bottom: 8em;
}

.pixel-btn {
    display: inline-block;
    padding: 20px 35px;
    background-color: pink;
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    border: 5px solid black;
    border-radius: 4px;
    transition: all 0.3s ease;

  }
  
  .pixel-btn:hover {
    background-color: palevioletred;
    cursor: pointer;
}

.img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 3em;
}

.content-img-wrapper {
  position: relative;
}


.content-img {
  width: 300px; 
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
  transition: transform 0.3s ease;
}

.hunt-gather {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-left: 85em;
  gap: 20px;
  margin-bottom: 3em;
}

.class-activities {
  display: flex;
  flex-direction: column;
  margin-left: 20em;
  margin-bottom: 3em;
}

.content-img:hover {
  transform: scale(1.5); 
}

.text-box {
  position: absolute;
  white-space: normal; 
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  font-family: "VT323", monospace;
  font-size: 1.2em;
  background-color: antiquewhite;
  padding: 5px
}

.hg {
  position: relative;
  white-space: normal; 
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  font-family: "VT323", monospace;
  font-size: 1.2em;
  background-color: antiquewhite;
  padding: 5px
}

.content-img-wrapper:hover .text-box {
  opacity: 1;
}

.content-img-wrapper:hover .text-box-hg {
  opacity: 1;
}

.content-img-wrapper:hover .content-img {
  transform: scale(1.5); 
}


.return-btn {
  margin-left: 2em;
}


.wrapper {
  display: flex;
}

.body {
  background-color: white;
}