/* Banana rain effect */
.banana{
  position: relative;
  display: flex;
}
.banana span{
  position: relative;
  margin: 0 4px;

  animation: animate 15s linear infinite;
  animation-duration: calc(50s / var(--i));
}
.banana img{
  width: 60px;
}
@keyframes animate 
{
  0%
  {
    transform: translateY(-10vh) scale(0); 
  }
  100%
  {
    transform: translateY(200vh) scale(1.5); 
  }
}

.main-container{
  position: relative;
  overflow: hidden;

  background-color: #000;
  width: 100%;
  height: 100vh;
}
.main-content{
  display: flex; flex-direction: column; align-items: center;
}

/* Main title */
.main-heading{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2vw;
}
.main-heading h1{
  color: #fff;
  font-size: 5rem;
}
.main-content img{
  position: relative;
  width: 20rem;
}
.main-selector ul{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4vw;
  margin-top: 3vw;
  margin-bottom: 5vw;
}
.main-selector ul li a{
  color: #fff;
  font-size: 2.4rem;
  cursor: pointer;
  font-weight: 600;
  text-decoration:none;
}
.main-selector ul li a:hover{
  color: #000;
  background: #fff;
  border: 1px solid #fff;
  padding: 0 0.5rem;
}
label a{
  position: relative;
  color: #fff;
  font-size: 2.2rem; font-family: "Bree Serif", serif; font-weight: 500;
  border: 1px solid #fff;
  padding: 1rem 1.5rem;
  border-radius: 0.4rem;
  background: linear-gradient(#fec163, #de4313);
  outline:none;
  border: none;
}