body {
  background-color: rgb(32, 32, 32);
  font-family: Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.box-btn {
  width: 98vw;
  display: flex;
  justify-content: center;
}

.btn-header {
  background-color: rgb(254, 155, 98);
  border: 2px solid rgb(254, 155, 98);
  padding: 10px;
  margin: 10px;
  cursor: pointer;
  border-radius: 10px;
  width: 100px;
  color: white;
}

.btn-footer {
  background-color: rgb(10, 10, 10);
  border: 2px solid rgb(254, 155, 98);
  padding: 10px;
  margin: 10px;

  border-radius: 10px;
  width: 100px;
  color: rgb(254, 155, 98);
}

.btn-header:hover {
  background-color: rgb(19, 19, 19);
}

.btn-header:disabled {
  background-color: grey;
  border: 2px solid grey;
}

.canvas {
  position: absolute;
  height: 50vh;

  top: 0;
  z-index: 20;
}

.video {
  background-color: rgb(10, 10, 10);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  box-sizing: border-box;
  object-fit: cover;
}

.multi {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 50vh;
  width: 500px;
  top: 0;
}

.multimedia {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  margin: 0;
  overflow: hidden;
}

#smile-status {
  position: absolute;
  bottom: 5vh;
  width: 100%;
  font-size: 2.5em;
  text-align: center;
  color: white;
  z-index: 50;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}

.winner {
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(254, 155, 98);
}

.modal {
  position: absolute;
  top: 40vh;
  width: 400px;
  height: 200px;

  z-index: 30;
}