* {
  margin: 0;
  padding: 0;
}

.yoohomi-logo {
  font-family: 'Comic Sans MS', 'Fredoka', 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0px;
  margin-bottom: 5px;
  margin-left: 20px;
}




header {
  background: rgb(41, 164, 213);
  color: white;
  text-align: center;
  padding: 0.8rem 0.3rem;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  position: relative;
}


body {
  font-family: 'Poppins', sans-serif;
  /*background-color: var(--lightest-teal);*/
  background-color: white;
  line-height: 1;
}



/* section */

.section {
  display: none;
  padding: 0px;
  padding-bottom: 20px;
}

.active {
  display: block;
}


.content-section {
  display: none;
  animation: fadeIn 0.5s ease;
}

.content-section.active {
  display: block;
}


/* Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  background: #fff;
  border-top: 1px solid #ddd;
  padding: 5px 0;
}

.bottom-nav button {
  background: none;
  border: none;
  font-size: 14px;
  text-align: center;
  color: #555;
  cursor: pointer;
}

.bottom-nav button.active-btn {
  color: #007bff;
  font-weight: bold;
}


