:root {
  --background: #f9d877;
}

.page p {
  margin-bottom: 1rem;
}

.tab {
  font-family: "Patrick Hand";
  text-transform: uppercase;
  line-height: 1;
  display: inline-block;
  margin-left: -35px;
  filter: drop-shadow(0px -3px 2px rgba(0, 0, 0, 0.05));
  border: none;
  border-radius: 8px 8px 0 0;
  position: relative;
  margin-right: 4rem;
  background: var(--background);
  white-space: nowrap;
  cursor: pointer;
}

.tab:focus {
  outline: none;
}

.tab:focus span {
  /* border-bottom: 2px solid; */
  border-radius: 0;
}

.tab:first-of-type {
  margin-left: 30px;
}

.tab div {
  background: var(--background);
  padding: 6px 0;
  position: relative;
  z-index: 10;
}

.tab span {
  display: inline-block;
  border: 2px solid transparent;
  padding: 6px 15px 6px;
  border-radius: 5px;
  z-index: 5;
  position: relative;
  font-size: 140%;
  color: #fff;
  min-width: 6rem;
}

.tab:before,
.tab:after {
  content: "";
  height: 100%;
  position: absolute;
  background: var(--background);
  border-radius: 8px 8px 0 0;
  width: 30px;
  top: 0;
}

.tab:before {
  right: -16px;
  transform: skew(25deg);
  border-radius: 0 8px 0 0;
}

.tab:after {
  transform: skew(-25deg);
  left: -16px;
  border-radius: 8px 0 0 0;
}

.tab.active {
  z-index: 50;
  position: relative;
}

.tab.active span {
  /* background: white; */
  /* box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1); */
  border-radius: 5px;
  color: black;
}

.content {
  border-radius: 10px;
  position: relative;
  width: 100%;
  min-height: 100%;
  /* background-color: blue; */
}

.content #tab-1 {
  display: block;
}

.content:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  border-radius: inherit;
}

.content__inner {
  font-family: "Yomogi", sans-serif;
  display: none;
  background: var(--background);
  border-radius: inherit;
  padding: 1rem;
  min-height: 100%;
  filter: drop-shadow(0px -2px 2px rgba(0, 0, 0, 0.1));
  z-index: 5;
}

.folder {
  margin: 1rem auto;
  max-width: 80%;
  /* width: 100%; */
  height: auto;
  scrollbar-height: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

.folder ::-webkit-scrollbar {
  background: transparent; /* Chrome/Safari/Webkit */
  display: none;
}

.page {
  border-radius: 5px;
  overflow: hidden;
  min-height: 100%;
  line-height: 160%;
  background-color: #f9f9f9;
  filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.15));
  background-size: 8% 8%, 2px 2px;
}

.page img {
  width: 100%;
}

.tabs {
  padding: 2rem 0 0 0;
  width: 100%;
  margin: 0 0.5rem;
  overflow-x: auto;
  width: calc(100% - 1rem);
  white-space: nowrap;
}

@media (min-width: 50rem) {
  .tabs {
    margin: 0 2rem;
    width: calc(100% - 4rem);
  }
}

.tab:nth-of-type(1),
.content__inner:nth-of-type(1) {
  --background: #af4d98;
}

.tab:nth-of-type(2),
.content__inner:nth-of-type(2) {
  --background: #d66ba0;
}

.tab:nth-of-type(3),
.content__inner:nth-of-type(3) {
  --background: #e5a9a9;
}

.tab:nth-of-type(4),
.content__inner:nth-of-type(4) {
  --background: #6cb6bb;
}

.tab {
  border: 2px solid;
  border-width: 2px 0 0;
}

.tab:before,
.tab:after {
  top: -2px;
  border-top: 2px solid;
}

.tab:before {
  border-right: 2px solid;
}

.tab:after {
  border-left: 2px solid;
}

.tab.active span {
  /* border: 2px solid; */
}

.tab.active:focus span {
  /* outline: 1px solid rgba(255, 255, 255, 0.7); */
}

.tab:not(.active) {
  /* border-bottom: 2px solid; */
}

.tab:not(.active):before,
.tab:not(.active):after {
  box-shadow: 0 1.5px 0 black;
}

.content {
  top: -2px;
  left: -2px;
}

.content__inner {
  box-shadow: 0 0 0 2px white;
}

.page {
  border: 2px solid white;
}


#gallery-text{
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* background-color: red; */
  padding: 2%;
}

#gallery-title{
  font-family: Bebas;
  font-size: 2.5rem;
  color: white;
    text-align: center;
    
  margin-bottom: 1rem;
  text-shadow: 2px 1px 1px rgba(0, 0, 0, 0.5);
}

#gallery-description{
  font-family: ITCLight;
  font-size: 1.05rem;
  /* line-height: 1.5; */
  color: #fff;
  text-align: justify;
  margin-bottom: 2rem;
}