body {
  font-family: "BPG Banner ExtraSquare Caps", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  height: 82vh;
  background-color: #f9f9f9;
}

/*აქედან*/

canvas {
  display: block;
}

/*აქამდე*/

#status {
  
  left: 50%;
  transform: translateX(-50%);
 
  color: black;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 18px;
}
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: 29px;
  padding: 0px 10px 0px 13px;
  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;
  z-index:99;
}

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;
}

video {
  border: 1px solid #6947c5;
  border-radius: 20px;
  width: auto;
  height: 300px;
  z-index:20;
}

#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;
}