/* styles.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: sans-serif;
  background-color: black;
}

#top {
  position: relative; /* Add this */
  height: 80%;
  background-color: #ffd600;
  display: flex;
  justify-content: center;
  align-items: center;
}

#bottom {
  height: 20%;
  background-color: #000000; /* Black */
  display: flex;
  flex-direction: row;
}

.control {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  gap: 4px;
  overflow: hidden;
}

#video {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
  cursor: pointer;
  background-color: black;
  display: block;
}

img {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

#photoCanvas {
  max-width: 100%;
  max-height: 100%;
  border: 1px solid #000;
}

#countdownOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  visibility: hidden;
}
