.logo1{

    width: 45px;
    height: 60px;
}
.logo{
    margin-left: 16px;
width: 50px;
height: 23px;
}
.upper{

    display: flex;
    align-items: center;
    justify-content: center;
}#scrollToTopBtn {
    position: fixed;
    bottom: 2%;
    right: 2%;
    background-color:#86be5d;
    color: #333;
    border: none;
    cursor: pointer;
    padding: 15px;
   
    font-size: 20px;
    transition: background-color 0.3s;
  }
  
  #scrollToTopBtn.showBtn {
    opacity: 1;
  }
  #scrollToTopBtn:hover {
    background-color: #85be5dbe;
  }
  @keyframes slide {
    0% { transform: translateX(100%); }
    100% { transform: translateX(0%); }
  }
  main img{
    animation: slide 1s;

  animation-fill-mode: forwards;
  }


body::-webkit-scrollbar {
  display: none; /* Hide scrollbar */
}