@font-face {
  font-family: PP Mori;
  src: url(./assets/fonts/PP_Mori/PPMori-SemiBold.otf);
  font-display: swap;
  font-weight: 700;
}
@font-face {
  font-family: PP Mori;
  src: url(./assets/fonts/PP_Mori/PPMori-SemiBoldItalic.otf);
  font-display: swap;
  font-style: italic;
  font-weight: 700;
}
@font-face {
  font-family: PP Mori;
  src: url(./assets/fonts/PP_Mori/PPMori-Regular.otf);
  font-display: swap;
  font-weight: 400;
}
@font-face {
  font-family: PP Mori;
  src: url(./assets/fonts/PP_Mori/PPMori-RegularItalic.otf);
  font-display: swap;
  font-style: italic;
  font-weight: 400;
}
@font-face {
  font-family: PP Mori;
  src: url(./assets/fonts/PP_Mori/PPMori-Extralight.otf);
  font-display: swap;
  font-weight: 300;
}
@font-face {
  font-family: PP Mori;
  src: url(./assets/fonts/PP_Mori/PPMori-ExtralightItalic.otf);
  font-display: swap;
  font-style: italic;
  font-weight: 300;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  font-family: PP Mori, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
  height: 100vh;
  background-color: #fbeecb;
  padding-top: 70px;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.background {
  width: 100vw;
  max-width: 600px;
}

.rotation {
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  margin-top: 4.24vw;
  width: 39.5vw;
  max-width: 237px;
  transform: rotate(0deg);
  transform-origin: 50% 56.5%;
  transition: transform 0.1s ease-out;
}

.intro {
  display: flex; /* Hidden by default */
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 3;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: z-index 0s;
}
.intro .intro-background {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-blend-mode: screen;
  filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  -webkit-filter: blur(6px);
  backdrop-filter: blur(6px);
}
/* Modal Content */
.intro .intro-modal {
  background-color: #ffffff;
  border: 2px solid #0d262b;
  width: 332px;
  position: relative;
  z-index: 5;
}
.intro .intro-modal .content {
  padding: 3rem 2rem;
  position: relative;
  height: 100%;
  text-align: center;
}
.intro .intro-modal .content button {
  background: #0d262b;
  color: #ffffff;
  cursor: pointer;
  width: 190px;
  height: 50px;
  text-align: center;
  border: none;
}

@media all and (min-width: 600px) {
  .rotation {
    margin-top: 26px;
  }
}

.modal {
  display: block;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}