.tutorial-button-even
{
  position: relative;
  width: 15vw;
  height: 8vh;
  border-radius: 1.5vh 0 0 1.5vh;
  padding-left: 0.7vw;
  background-color: rgb(13, 13, 13);
  color: #e0e0e0;
  font-family: 'Tomorrow-bold';
  font-size: 1vw;
  display: flex;
  align-items: center;
  border-width: 1px;
  border: solid;
  border-right: none;
  overflow: hidden;
  z-index: 10;
}

.tutorial-button-odd
{
  background-color: rgb(0, 0, 0);
}

.tutorial-button-even:hover
{
  cursor: pointer;
  transform-origin: right;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255,255,255,0.25);
  clip-path: inset(0 0 0 -30px);
}

.tutorial-button-text::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg, 
    transparent, 
    transparent 40%, 
    rgba(51, 204, 186, 0.4) 90%,
    transparent 100%
  );
  transform: translateX(-100%);
  transition: all 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.tutorial-button-even:hover .tutorial-button-text::before{
  opacity: 1;
  transform: translateX(20%);
}

.tutorial-button-active
{
  background-color: rgb(44, 212, 193);
  color: black;
  border: none;
  z-index: 5;
  cursor: pointer;
}

.tutorial-explain-background
{
  position: relative;
  border-radius: 0 1vw 1vw 1vw;
  background-color: #181617;
  width: 70vw;
  height: 82vh;
  margin-bottom: 2vh;
}

.tutorial-explain-card
{
  position: relative;
  display: inline-block;
  width: 69.8vw;
  height: 78vh;
  background-color: transparent;
  align-self: flex-end;
  margin-top: 1.5vh;
  padding-top: 1vh;
  padding-left: 1.5vw;
  overflow-y: scroll;
}

.tutorial-explain-content
{
  width: 95%;
  color: #E0E0E0;
  font-size: 20px;
  font-family: 'Tomorrow-medium';
  gap: 2vh;
  align-items: start;
  line-height: 1.5;
}

.tutorial-explain-h1
{
  display: block;
  margin-bottom: 0.6vh;
  font-family: 'Tomorrow-bold';
  font-size: 24px;
  color: rgb(0, 255, 225);
}