body {
  margin: 0;
  font-family: Georgia, serif;

  background-image: url("general/textures/backgrounds/orphanage.png");
  background-size: cover;        
  background-position: center;   
  background-repeat: no-repeat;  
}

/*::-webkit-scrollbar {  global scrollbar , the one on the right
  width: 12px;
}*/

.wrapper {
  height: 1300px; /*test height to try the on scroll animations */
  width: 1600px;
  margin: 0 auto;
}

:root {
  --border-brown: #8b6a3e;    /*#8b6a3e*/
  --box-bg: #f6edd2;    /*#f6edd2 */
}

.logo {
  background: transparent;
  border: none;
  height: 220px;
  width: 600px;
  margin: 40px auto 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  height: 260px;
  width: auto;
}

.buttonArea {
  position: relative;

  width: 100vw;                
  left: 50%;                   
  transform: translateX(-50%); 

  height: 105px;
  margin-top: 30px;

  background: url("general/textures/info_boxes/frame.png");
  background-size: auto;
  background-position: center -40px;
  background-repeat: repeat-x;

  border: 0px solid var(--border-brown);

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.btn {
  width: 250px;
  height: 100px;
  background: url("general/textures/info_boxes/5.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border: 0px solid var(--border-brown);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 22px;
  border-radius: 6px;
  transition: 0.2s;
  cursor: pointer;
}

.btn:hover {
  transform: scale(1.1);
  filter: brightness(0.8);
}

.row {
  width: 1400px;
  margin: 30px auto 0 auto;
  display: flex;
  gap: 30px;
}

.gallery {
  background: url("general/textures/backgrounds/gallery_bg.png");
  background-size: 950px 620px;
  background-position: center;
  background-repeat: no-repeat;
  border: 5px solid var(--border-brown);
  width: 950px;
  height: 610px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
}

.abyss {
  background: var(--box-bg);
  border: 2px solid var(--border-brown);
  width: 370px;
  height: 850px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
}

.changeLog {
  background: #3a2b1a;    /* #3a2b1a*/
  border: 2px solid var(--border-brown);
  width: 1000px;
  height: 250px;
  margin-top: 30px;
  padding: 20px;
  font-size: 20px;
  color: #ffe596;   /* #ffe596*/
  overflow-y: auto;
  overflow-x: hidden;
}

.changeLog::-webkit-scrollbar {
  width: 12px;
}

.changeLog::-webkit-scrollbar-thumb {
  background-color: #6b4e2d;    /* #6b4e2d*/
  border-radius: 0;
}

.info {
  background: var(--box-bg);
  border-top: 2px solid var(--border-brown);
  width: 100%;
  height: 140px;
  margin-top: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}
.abyss {
  display: block;
  width: 420px;        
  aspect-ratio: 4/3;  
  overflow: hidden;
  border: 2px solid #000;
}

.abyss img {
  width: 100%;
  height: 100%;
  object-fit: cover;   
  display: block;
  transition: 0.25s;
}

.abyss:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}