





body {
  font-family: Arial, sans-serif;

  display: flex;
  flex-direction: column;
  min-height: 100vh;
 background-color: #f7f7f7;
}



main {
    background-color: #fff;
      margin: 1rem;
  padding: 1rem;
}

.title_ {
   
    margin: 1rem;
  padding: 1rem;

}

.content {
    margin: 1rem;
  padding: 1rem;
}

header {
  /* background-color: #333; */
  /* background-color: #f7f7f7; */
  padding: 1rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: 30px; /* Adjust this value as needed */
  margin-right: 5px;
}

.logo-text {
  color: #333;
  font-size: 1.5rem;
} 


.backToTopBtn {
      display: none;
      position: fixed;
      bottom: 20px;
      right: 30px;
      z-index: 99;
      font-size: 18px;
      border: none;
      outline: none;
      background-color: #333;
      color: white;
      cursor: pointer;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      text-align: center;
      line-height: 50px;
    }

.backToTopBtn:hover {
      background-color: #555;
    }