* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
}

header {
  background-color: #f5f5f5;
  padding: 10px;
  text-align: center;
  position: relative;
}

header img {
  height: 100%;
  object-fit: cover;
}
button#menuButton {
  background-color: transparent;
  color: #333;
  border: none;
  font-size: 24px;
  cursor: pointer;
  transition: transform 0.3s ease;
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

span#menuText {
  font-size: 14px;
  position: absolute;
  right: 90px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1;
}

nav#sideMenu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #f5f5f5;
  z-index: 999;
  transition: right 0.3s ease;
}

nav#sideMenu.open {
  right: 0;
}

nav#sideMenu ul {
  list-style: none;
  padding: 20px;
}

nav#sideMenu ul li {
  margin-bottom: 10px;
}

nav#sideMenu ul li a {
  display: block;
  text-decoration: none;
  color: #333;
  font-size: 18px;
}

nav#sideMenu ul li span.emoji {
  margin-right: 10px;
  font-size: 20px;
}

#closeButton {
  background-color: transparent;
  color: #333;
  border: none;
  font-size: 36px;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

@media (max-width: 768px) {
  span#menuText {
    display: none;
  }

  button#menuButton {
    right: 10px;
  }

  nav#sideMenu {
    width: 100%;
  }
}

