@charset "utf-8";
/* CSS Document */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

main {
  position: relative;
  height: auto;
}

/*video {
  min-height: 100vh;
  max-width: 100%;
  width: 100%;
  height: auto;
  padding: 0;
}*/

.full-screen {
  transition: 150ms;
  position: absolute;
  bottom: 0;
  right: 0;
  margin: auto;
  height: fit-content;
  width: fit-content;
  background-color: transparent;
  border-color: transparent;
  border-radius: 50%;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  cursor: pointer;
  opacity: .75;
}

.full-screen:hover {
  opacity: 1;
	transform: scale(1.20);

}

/*@media (hover: hover) {
  .full-screen {
    opacity: 0;
  }

  main:hover .full-screen {
    opacity: 1;
  }
}*/