body, html {
  font-size: 10px;
  user-select: none;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  overflow: hidden;
  background-color: black;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

svg {
  fill: #fff;
}

svg:hover {
  fill: #8d8d8d;
}

.noiselayer {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.noiselayer::before {
  z-index: 1 !important;
  pointer-events: none;
}

.absoluteelement {
  position: absolute;
  width: 50rem;
  top: 50%;
  transform: translateY(-50%);
}

.absoluteelement.disk {
  transform: translate(5%, -50%);
  cursor: pointer;
}

.absoluteelement.gif {
  transform: translate(7%, -50%);
  pointer-events: none;
}

.absoluteelement.title {
  z-index: 99;
  pointer-events: none;
  backface-visibility: hidden;
}

@keyframes spinning {
  from {
    transform: translate(25%, -50%) rotateZ(0deg);
  }
  to {
    transform: translate(25%, -50%) rotateZ(360deg);
  }
}

.video1, .video2 {
  transition: 0s;
  position: absolute;
  width: 50rem;
}

.video2 {
  display: none;
}

.transitionpath {
  clip-path: ellipse(1000px 1000px at 100% 100%);
  transition: all 0.3s ease-in-out;
}

.timeslider {
  position: absolute;
  display: flex;
  width: 100%;
  padding: 0 5em;
  bottom: 2rem;
  z-index: -1;
}

.player__time {
  -webkit-appearance: none;
  width: 100%;
  height: .1em;
  background: #fff;
  outline: none;
  opacity: 1;
}

.player__time::-webkit-slider-thumb {
  appearance: none;
  width: .5em;
  height: 1em;
  background: #8d8d8d;
  cursor: pointer;
}

.player__time::-moz-range-thumb {
  width: .5em;
  height: .7em;
  background: #8d8d8d;
  cursor: pointer;
  border-radius: 0%;
}

.player {
  position: absolute;
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 0 18em;
  bottom: 0rem;
  z-index: -1;
}

.player_element {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}

.btn__state {
  opacity: 0;
}

.active {
  opacity: 1;
}

.link {
  position: absolute;
  display: flex;
  width: 100%;
  bottom: -10rem;
  justify-content: space-between;
  padding: 0 5em;
}

.icons_items {
  width: 2rem;
  height: 2rem;
  transition: 0.3s;
}

.icons_items:hover {
  fill: #8d8d8d;
}

.flip {
  width: 7rem;
  height: 7rem;
  position: absolute;
  transform: translateY(-6rem);
  cursor: pointer;
  background: url(../elements/flip.png) left center;
}

@keyframes play {
  100% {
    background-position: -1327.41px;
    animation-fill-mode: backwards;
    animation-play-state: paused;
  }
}

.pause {
  animation-play-state: paused;
}

.play {
  animation: play 0.8s steps(19);
}

.logo {
  width: 12rem;
  position: absolute;
  margin-top: -9rem;
  cursor: pointer;
}

.albumvideos {
  width: 50rem;
  height: 50rem;
  position: absolute;
  transition: 1s;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  transform: perspective(700px) rotateY(0deg);
}

.albumvideos.back {
  transform: perspective(700px) rotateY(180deg);
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}

.posteralbum {
  width: 50rem;
  height: 50rem;
  position: relative;
  display: flex;
  justify-content: center;
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}
/*# sourceMappingURL=style.css.map */

@font-face{
  src: url(fonts/ArnoPro-Regular.otf);
  font-family: ArnoProRegular;
}

.texte{
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 1.5em;
  color: #fff;
  margin: 0;
  text-align: justify;
  position: absolute;
  width: 15em;
  transition: 1s ease-in-out;
  display: none;
  margin-top: 1em;
}

.textearno{
  font-family: ArnoProRegular;
}

.texteappear{
  display: block;
  transform: translateX(40rem);
}