* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  padding: 20px;
  font-size: 15px;
}

.header-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

.header-bar h1 {
  font-size: 40px;
}

.info-wrapper {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.info-icon {
  background-color: white;
  color: black;
  border: 2px solid black;
  font-weight: bold;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  user-select: none;
}

.tooltip {
  position: absolute;
  top: 30px;
  right: 0;
  width: 250px;
  background-color: #333;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  font-size: 13px;
  display: none;
  z-index: 100;
}

.hamburger-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 30px;
  cursor: pointer;
  padding: 10px 0;
}

.hamburger-icon div {
  width: 30px;
  height: 4px;
  background-color: #333;
  margin: 5px 0;
  transition: 0.4s;
}

.menu {
  display: none;
  flex-direction: column;
  background-color: #f4f4f4;
  padding: 10px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
  width: fit-content;
}

.menu a {
  text-decoration: none;
  color: #000;
  margin: 5px 0;
}

.menu a:hover {
  color: #007BFF;
}

.menu.active {
  display: flex;
}

.main-page {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}

.section-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

#editor {
  height: 300px;
  background-color: white;
}
