#rewind {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  position: absolute;
  top: 0;
  left: 0;
  width: 15%;
  height: 100%;
}

#forward {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  position: absolute;
  top: 0;
  right: 0;
  width: 15%;
  height: 100%;
}



#time-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  gap: 0.5em;
}

button {
  background-color: transparent;
  border: none;
  font-size: 3em;
  cursor: pointer;
  font-family: "Space Mono", monospace;
  text-shadow: 0 0 0.5em black;
  color: white;
  padding: 0.2em;
}

button.active {
  background-color: #ff00ff50;
  border-radius: 0.5em;
  transition: 0.1s ease all;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  font-family: "Space Mono", monospace;
  text-shadow: 0 0 0.5em black;
  color: white;
}

p {
  font-size: 3em;
  width: 50%;
  margin: 0;
}

#app {
  width: 100%;
  height: 100%;


  img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
  }
}
