.block-stuff{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  transform-style: preserve-3d;
  z-index: -1;
}

.background1,
.background2,
.background3,
.background4,
.background5,
.background6{
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;

  align-items: center;

  font-family: 'Cinzel', serif;
  color: #FF7F27;

  font-size: 1rem; 
  font-weight: bold;

  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.background0{
  transform: translateZ(-7px);

  margin-bottom: 35rem;
}

.box0{
  border: solid 5px;
  border-radius: 10px;

  text-align: center;
  font-size: 3.8rem;
  
  padding: 5px;

  opacity: 0;
  animation: introduction ease-out;
  animation-fill-mode: forwards;
}



.background1{
  transform: translateZ(-6px);
}

.box1,
.box2,
.box3,
.box4,
.box5,
.box6{
  display: inline-block;

  border: solid 5px;
  border-radius: 10px;

  width: 20rem;
  height: 20rem;

  align-items: center;

  margin-top: 8rem;

  opacity: 0;
  animation: introduction 350ms ease-in 3.5ms;
  animation-fill-mode: forwards;
}

.background2{
  transform: translateZ(-5px);
}

.box2{
  margin-top: 16rem;
}



.background3{
  transform: translateZ(-4px);
}

.box3{
  margin-top: 24rem;
}



.background4{
  transform: translateZ(-3px);
}

.box4{
  margin-top: 32rem;
}



.background5{
  transform: translateZ(-2px);
}

.box5{
  margin-top: 40rem;
}



.background6{
  transform: translateZ(-1px);
}

.box6{

  margin-top: 48rem;
}



/* button */

.button-container{
  display: flex;
  justify-content: center;

  margin-top: 2rem;
  margin-bottom: 2rem;
}

.change-button{
  font-family: 'Cinzel', serif;
  font-weight: bold;
  font-size: large;

  background-color: #FF7F27;
  color: #821200;

  height: 10rem;
  width: 18rem;

  border: none;
  border-radius: 20px;

  transition: transform 0.3s;

  /* animations */

  opacity: 0;
  animation: introduction 350ms ease-in 5s;
  animation-fill-mode: forwards;
}

.change-button:hover{
  background-color: #FF878B;

  transform: translateY(-10px);
}

.change-button:active{
  background-color: #FFBEC1;

  transform: translateY(10px);
}