* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

.video-cont {
  height: 100vh;
  width: 100vw;
  background-color: black;
}

.video-cont video {
  height: 100%;
  width: 100%;
}

.action-cont {
  width: 5rem;
  height: 12rem;
  /* background-color:lightblue; */
  position: absolute;
  top: calc((100vh - 12rem) / 2);
  right: 5rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}

.action-cont > * {
  width: 100%;
  height: 5rem;
  /* background-color: lightcoral; */
  border-radius: 50%;
  border: 5px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.record-btn {
  background-color: red;
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.capture-btn {
  background-color: white;
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

/* animation */
.scale-record {
  animation-name: scale-record;
  animation-iteration-count: infinite;
  animation-duration: 1s;
}

.scale-capture {
  animation-name: scale-capture;
  animation-iteration-count: 1;
  animation-duration: 1s;
}

@keyframes scale-record {
  0% {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
  }

  100% {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
}

@keyframes scale-capture {
  0% {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
  }

  100% {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
}
.timer-cont {
  position: absolute;
  bottom: 10rem;
  left: 5rem;
  font-size: 0.8rem;
  color: red;
}
.timer {
  display: none;
}

/* filter container */
.filter-cont {
  position: absolute;
  top: calc((100vh - 16rem) / 2);
  left: 5rem;
  width: 6rem;
  height: 16rem;
  background-color: aqua;
  z-index: 2;
}
.filter {
  height: 4rem;
  background: url("https://picsum.photos/seed/picsum/200/300");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-blend-mode: color-burn;
}
 .orange{
  background-color: #ffa5006b;
}
.brown{
  background-color: #be36365e;
}
.pink{
  background-color: #ffc0cbad;
}

.transparent{
  background-color: transparent;
}
.filter-layer{
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 1;
}