*{
    font-family: "bely-display", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.Buttons a{
    text-decoration: none;
    background-color: none;
}


.Buttons a:hover{
    background-color: none;
    color: rgb(55, 55, 55);
}

.Buttons a:visited{
    text-decoration: none;
}

.Tote img{
    position: fixed;
    top: 10%;
    left: 15%;
    max-width: 50%;
    margin-bottom: 20px;
}


.button1, .button2, .button3, .button4 {
    width: 350px;
    border: none;
    padding: 20px 10px;
    text-align: center;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    position: fixed;
    left: 60%;
    margin-top: 20px;
  }
  
  .button1{
    top: 10%;
  }

  .button2{
    top: 25%;
  }

  .button3{
    top: 40%;
  }

  .button4{
    top: 55%;
  }
  
  .button1:hover {
    background-color: rgb(225, 225, 225);
    color: rgb(55, 55, 55);
    box-shadow: 2px 2px 5px 1px rgb(176, 176, 176);
  }

  .button2:hover {
    background-color: rgb(225, 225, 225);
    color: rgb(55, 55, 55);
    box-shadow: 2px 2px 5px 1px rgb(176, 176, 176);
  }

  .button3:hover {
    background-color: rgb(225, 225, 225);
    color: rgb(55, 55, 55);
    box-shadow: 2px 2px 5px 1px rgb(176, 176, 176);
  }

  .button4:hover {
    background-color: rgb(225, 225, 225);
    color: rgb(55, 55, 55);
    box-shadow: 2px 2px 5px 1px rgb(176, 176, 176);
  }


.Item img {
	max-width: 10%;
} 

.Item img:hover{
    z-index: 100;
}

.Item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: none;
}

#home a{
    background-color: none;
    text-decoration: none;
    color: rgb(58, 57, 57);
}

#home {
    font-size: large;
      display: block;
      position: fixed;
    left: 5%;
    bottom: 0;
      margin: 0.5em 0;
      padding: .8em 2.2em;
      cursor: pointer;
      border-radius: .4em;
      perspective: 500px;
      transform-style: preserve-3d;
}

#randomButton {
    font-size: large;
      display: block;
      position: fixed;
    right: 5%;
    bottom: 0;
      margin: 0.5em 0;
      padding: .8em 2.2em;
      cursor: pointer;
      border-radius: .4em;
      perspective: 500px;
      transform-style: preserve-3d;
  
  &:after {
          --z: 0px;
          position: absolute;
          top: 0;
          left: 0;
          display: block;
          content: '';
          width: 100%;
          height: 100%;
          opacity: 0;
          mix-blend-mode: inherit;
          border-radius: inherit;
          transform-style: preserve-3d;
          transform: translate3d(
              calc(var(--z) * 0px), 
              calc(var(--z) * 0px), 
              calc(var(--z) * 0px)
          );
      }
      
      span {
          mix-blend-mode: none;
          display: block;
      }
      
      &:after {
          background-color: aquamarine;
      }
      
      
      &:hover {
          background-color: #EBFF00;
          transition: background .3s 0.1s;
      }
      
      &:hover:before {
          --z: 0.04;
          animation: translateWobble 2.2s ease forwards;
      }
      
      &:hover:after {
          --z: -0.06;
          animation: translateWobble 2.2s ease forwards;
      }
  }
  
  @keyframes rotateAngle {
      0% {
          transform: rotateY(0deg) rotateX(10deg);
          animation-timing-function: cubic-bezier(0.61, 1, 0.88, 1);
      }
      25% {
          transform: rotateY(20deg) rotateX(10deg);
      }
      50% {
          transform: rotateY(0deg) rotateX(10deg);
          animation-timing-function: cubic-bezier(0.61, 1, 0.88, 1);
      }
      75% {
          transform: rotateY(-20deg) rotateX(10deg);
      }
      100% {
          transform: rotateY(0deg) rotateX(10deg);
      }
  }
  
  @keyframes translateWobble {
    0% {
          opacity: 0;
          transform: translate3d(
              calc(var(--z) * 0px), 
              calc(var(--z) * 0px), 
              calc(var(--z) * 0px)
          );
    }
    16% {
          transform: translate3d(
              calc(var(--z) * 160px), 
              calc(var(--z) * 160px), 
              calc(var(--z) * 160px)
          );
    }
    28% {
          opacity: 1;
          transform: translate3d(
              calc(var(--z) * 70px), 
              calc(var(--z) * 70px), 
              calc(var(--z) * 70px)
          );
    }
    44% {
          transform: translate3d(
              calc(var(--z) * 130px), 
              calc(var(--z) * 130px), 
              calc(var(--z) * 130px)
          );
    }
    59% {
          transform: translate3d(
              calc(var(--z) * 85px), 
              calc(var(--z) * 85px), 
              calc(var(--z) * 85px)
          );
    }
    73% {
          transform: translate3d(
              calc(var(--z) * 110px), 
              calc(var(--z) * 110px), 
              calc(var(--z) * 110px)
          );
    }
      88% {
          opacity: 1;
          transform: translate3d(
              calc(var(--z) * 90px), 
              calc(var(--z) * 90px), 
              calc(var(--z) * 90px)
          );
    }
    100% {
          opacity: 1;
          transform: translate3d(
              calc(var(--z) * 100px), 
              calc(var(--z) * 100px), 
              calc(var(--z) * 100px)
          );
    }
  }
  
  
  #randomButton a{
    text-decoration: none;
    color: rgb(58, 57, 57);
}


.one {
    margin-top: 50px;
    display: flex;
    align-items: center; 
    justify-content: center; 
    position: relative;
    text-align: center;
    font-size: x-large;
    border-radius: 20%;
    max-width: 100%;
    height: 150px;
    background-color: #E4CCFF;
    text-shadow: 1px 1px 2px rgb(252, 185, 161);
    box-shadow: 2px 2px 15px 10px orangered;
}

.one a{
    margin-left: 30px;
}

.two {
    margin-top: -260px;
    display: flex;
    align-items: center; 
    justify-content: center; 
    position: relative;
    text-align: center;
    font-size: x-large;
    border-radius: 20%;
    max-width: 100%;
    height: 150px;
    background-color: aquamarine;
    text-shadow: 1px 1px 2px rgb(252, 185, 161);
    box-shadow: 2px 2px 15px 10px orangered;
}

.two a{
    margin-left: 30px;
}


.three {
    margin-top: 50px;
    display: flex;
    align-items: center; 
    justify-content: center; 
    position: relative;
    text-align: center;
    font-size: x-large;
    border-radius: 20%;
    max-width: 100%;
    height: 150px;
    background-color: #EBFF00;
    text-shadow: 1px 1px 2px rgb(252, 185, 161);
    box-shadow: 2px 2px 15px 10px orangered;
}

.three a{
    margin-left: 30px;
}

.filter{
    opacity: 0.2;
}

.rectangle1{
    background-color: #E4CCFF;
    position: absolute;
    width: 100%;
    height: 80px;
    left: 0;
    bottom: 0;
}

.quit{
    background-color: orangered;
    position: absolute;
    width: 60%;
    height: 80px;
    left: 0;
    bottom: 0;
}

.up{
    position: absolute;
 font-size: 200px;
 left: 5%;
}

.down{
    position: absolute;
    font-size: 200px;
    text-align: right;
    right: 5%;
    bottom: 1%;
}

.quote{
    font-size: 4rem;
    position: absolute;
    text-align: center;
    left: 15%;
    top: 5%;
    right: 15%;
}

h3{
    margin-bottom: 20px;
}

.two h3{
    margin-top: 20px;
}

.three h3{
    margin-top: 20px;
}


#h2{
    position: fixed;
    left: 75%;
    top: 80%;
}