.video-container {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /* visibility: hidden; */
}
canvas {
    position: absolute;
}

.right-cam {
    position: absolute;
    left: 85%;
}

.right-cam .video-container {
    height: 0rem;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'poppins', sans-serif;
}

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: linear-gradient(90deg, rgba(91,30,159,1) 0%, rgba(77,39,182,1) 100%);
}

body h2 {
  color: white;
}

main {
  background-color: white;
  padding: 10px;
  border-radius: 10px;
  width: 100%;
  max-width: 40%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  display: none;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}

.spnQtd {
  text-align: end;
}

.answers {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

button {
  width: 100%;
  text-align: start;
  padding: 5px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background-color: #008CCC;
  color: white;
}

.finish {
  display: none;
  flex-direction: column;
  gap: 10px;
}

.finish button {
  text-align: center;
}


.spnImg img {
  width: 100%;
}

span .spqnName {
   font-weight: 600;
}

.spqnName button {
  width: auto;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 25px;
  background: #0072ff;
  color: #fff;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 250ms ease-in-out;
}

.finish button {
  background: #0072ff;
  color: #fff;
}


.aside-video {
  position: absolute;
  bottom: 63%;
  right: 8%;
}

.warning {
  left: 10%;
  position: fixed;
  top: 10%;
  background: white;
  border-radius: 3px;
  padding: 1rem;
}