.arrow {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 40px solid #000;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 1s infinite alternate ease-in-out;
  }

  
  @keyframes bounce {
    0% {
      transform: translateX(-50%) translateY(0);
    }
    100% {
      transform: translateX(-50%) translateY(-10px); /* Adjust the vertical movement distance */
    }
  }
  
h1 {
    font-size: 50px;
    padding-top: 300px;
    padding-bottom: 300px;
    text-align: center;

    font-family: "arek", serif;
    font-weight: 400;
    font-style: normal;
}

.part {
    margin: 50px;
    padding: 50px;
    opacity: 1;
  }


  .next {
	border-radius: 4px;
	background-color: transparent;
	border: none;
	color: #000000;
	text-align: center;
	font-size: 28px;
	padding: 20px;
	width: 200px;
	transition: all 0.5s;
	cursor: pointer;
	margin: 5px;
	position: fixed;
	right: 10px;
	top: 0px;

	font-family: "arek", serif;
	font-weight: 400;
	font-style: normal;
	}
		
.next span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
		
.next span:after {
  content: '\276F';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}
		
.next:hover span {
  padding-right: 25px;
  color: rgb(228, 76, 59);
}
		
.next:hover span:after {
  opacity: 1;
  right: 0;
}

@media only screen and (max-width: 600px) {
    .arrow {
        width: 0;
        height: 0;
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-top: 40px solid #000;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        animation: bounce 1s infinite alternate ease-in-out;
      }
    
      
      @keyframes bounce {
        0% {
          transform: translateX(-50%) translateY(0);
        }
        100% {
          transform: translateX(-50%) translateY(-10px); /* Adjust the vertical movement distance */
        }
      }
      
    h1 {
        font-size: 20px;
        padding-top: 300px;
        padding-bottom: 300px;
        text-align: center;
    
        font-family: "arek", serif;
        font-weight: 400;
        font-style: normal;
    }
    
    .part {
        margin: 50px;
        padding: 50px;
        opacity: 1;
      }
    
      .next {
        font-size: 20px;
        border: none;
        background-color: transparent;
    
        font-family: "altivo", sans-serif;
        font-weight: 700;
        font-style: normal;
    
        position: fixed;
        top: 10px;
        right: 10px;
    }
    
    .next:hover {
        transform: translateY(-4px);
    }
}