.logowrap{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.hpic{
    width: 600px;
    align-self: center;
    justify-content: center;
    margin-bottom: 30px;
  }
  
  
  @media (max-width: 768px) {
    .hpic{
      width: 90%;
    }
  }

  

.home-button {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9000;
  background-color: #ffd059;
  color: rgb(0, 0, 0);
  border: none;
  padding: 8px 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease-in-out;

  
}

.home-button:hover {
  background-color: #000000;
}


.home-button:hover .fa-home{
  color: #ffffff;
}

.fa-home {
  font-size: 18px;
  color: rgb(0, 0, 0);
  transition: all 0.3s ease-in-out;
}

