body {
  width:100%;
  font-family: "BPG Banner ExtraSquare Caps", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  overflow-x:hidden;
  background-color: #f9f9f9;
}

 /* CSS for the menu */
    .menu {
      position: absolute;
      left: 0;
      top: 50px;
      width: 200px;
      background-color: #333;
      color: white;
      display: none;
      flex-direction: column;
      padding: 10px;
    }
    
    .menu-item {
      padding: 10px;
      cursor: pointer;
    }
    
    .menu-item:hover {
      background-color: #555;
    }
    
    .menu-icon {
      cursor: pointer;
      font-size: 30px;
      margin-left: 10px;
    }

    .dropdown-content {
      display: none;
    }

    .menu.show {
      display: flex;
    }
    
/*აქედან*/

canvas {
  display: block;
}

/*აქამდე*/

h1 {
  padding-top: 20px;
  padding-bottom: 15px;
  font-size: 21px;
}

header {
  width: 100%;
  font-family: "BPG Banner ExtraSquare Caps", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #6947c5;
  padding: 20px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-top: 0px;
  z-index:21;
}

header .menu-icon,
header .auth-icon {
  cursor: pointer;
  font-size: 30px;
  padding: 0px 10px 0px 5px;
  color: #ffffff;
}

header .title {
  font-family: "BPG Banner ExtraSquare Caps", sans-serif;
  font-size: 20px;
  color: white;
  font-weight: bold;
  text-align: center;
  flex: 1;
}

header .dropdown {
  position: relative;
  display: inline-block;
}



header .dropdown-content {
    display: none;
    position: absolute;
    right: -225px;
    background-color: #f9f9f9;
    min-width: 100px;
    box-shadow: 0px 8px 16px #5a3c9859;
    z-index: 99!important;
    border-radius: 8px;
    padding: 5px;
    margin: 5px 10px 0px 5px;
    touch-action: pan-x;
}

header .dropdown-content a {
  color: black;
  padding: 8px 12px;
  text-decoration: none;
  display: block;
}

header .dropdown-content a:hover {
  background-color: #f1f1f1;
}

header .dropdown:hover .dropdown-content {
  display: block;
}



#output {
  margin-top: 20px;
  font-size: 24px;
  color: #333;
}

button {
  background-color: #6947c5;
  font-family: "BPG Banner ExtraSquare Caps", sans-serif;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
  z-index:99;
}

button:hover {
  background-color: #5a3c98;
}

