* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  overflow: hidden;
}

@font-face {
  font-family: 'regular';
  src: url('adelphe.ttf');
}

@font-face {
  font-family: 'italic';
  src: url('bold.ttf');
}

#container {
  overflow: hidden;
  position: fixed;
  display: grid;
  place-content: center;
  inset: 0px;
}

#content {
  position: absolute;
  user-select: none;
  transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: transform;
}

#bateau {
  transform: scale(0.3);
  transform-origin: center;
}

#narration {
  position: fixed;
    top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  color: #d20101;
      max-width: 28ch;
  font-family: 'regular';
  font-size: 1.3rem;
  line-height: 1.9rem;  
  pointer-events: none;
  background-color: white;
    border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%;
  padding: 3em;
  mix-blend-mode: darken;
}

#text {
  opacity: 0;
  transition: opacity 1s;
}





#sun{
  color: red;
  cursor: pointer;
  transition: 0.3s;
    opacity: 0.2;
}

#sun:hover{
  color: white;
  opacity: 1;
}

















