body {
  margin: 0;
  overflow: hidden;
}

.fullscreen-image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.left-panel {
  width: 5em;
  height: 100vh;
  background-color: rgba(60, 60, 60, 0.5);
  backdrop-filter: blur(5px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.button {
  background-color: transparent;
  border: none;
  color: white;
  cursor: pointer;
}

.button img {
  width: 3em;
  height: 3em;
  /*position: absolute;
  top: 10px;
  left: 20px;*/
}

.line {
	position: absolute;
	top: 11%;
	left: 50%;
	width: 5em;
	height: 1px;
	background-color: rgba(180,180,180,0.8);
	transform: translate(-50%, -50%);
	backdrop-filter: blur(5px);
}
