* {
  margin: 0;
  font-family: "Saira Stencil One", serif;
  font-weight: 400;
  font-style: normal;
}

body {
  text-align: center;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

main {
  /* background-color: yellow; */
  height: 100dvh;
  overflow: hidden;
}

.photo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.photo img {
  animation: brightness 2.5s ease-out .5s both;
  opacity: 0;
  transform: scale(2);
  /* transform-origin: top;
  position: relative;
  height: 333.3333vh; */
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes brightness {
  0% {
   opacity: 0;;
   transform: scale(2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/*  */
#instalink {
  /* background-color: #fef000; */
  position: absolute;
  width: 10vw;
  height: 10vh;
  top: 45vh;
  z-index: 11;
}
/*  */

/* @media (width < 1025px) {
  .photo img {
    animation: brightness_sp 2.5s ease-out 2s both;
    transform: scale(.7);
    transform: scale(0.21);
    height: 550vh;
    }
  @keyframes brightness_sp {
    0% {
        transform: scale(.7);
    }
    50% {
      transform: scale(.77);
    }
    100% {
      transform: scale(0.21);
    }
  }
} */

.copy {
  position: absolute;
  top: 50vh;
  left: 5vw;
  font-style: italic;
  font-size: 1.5vw;
  font-weight: bold;
  color: #000;
  letter-spacing: 0.02vw;
  /* filter: drop-shadow(1px 1px 3px #555); */
  /* }
.saira-stencil-one-regular { */
  font-family: "Saira Stencil One", serif;
  font-weight: 400;
  font-style: normal;
}

/* @media (max-width: 1025px) {
  .copy {
    transform: rotate(90deg);
    left: 1vw;
    left: -6vw;
    font-size: 3vw;
  }
} */

/* greeting */

.greeting {
  padding: 0.5em 0 1em;
  letter-spacing: 1vw;
  font-family: "dnp-shuei-nshogomincho-std", sans-serif;
  font-weight: 700;
}

/* nav/footer */

.toggle {
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.toggle span,
.toggle span:before,
.toggle span::after {
  content: "";
  width: 20px;
  height: 1px;
  background-color: black;
  position: absolute;
  display: block;
}

/* .toggle span {
    top: 14px;
} */

.toggle span::before {
  top: 6px;
}

.toggle span::after {
  bottom: 6px;
}

nav {
  position: relative;
  text-align: center;
  background-color: yellow;
  display: flex;
  justify-content: center;
  height: 30px;
}

nav ul {
  width: 90%;
  max-width: 600px;
  display: none;
  position: absolute;
  bottom: 30px;
  background-color: #ffffffee;
  padding: 0.3em 1em;
  box-sizing: border-box;
}

nav ul li {
  list-style-type: none;
  font-size: 18px;
  color: #858585;
  padding: 8px 0;
  border-bottom: 1px solid #858585;
}

nav ul li:last-child {
  border-bottom: none;
}

nav ul li:hover {
  background-color: #fef000;
}

nav ul li a {
  text-decoration: none;
  color: #818181;
  display: block;
}

footer {
  color: #cdcdcd;
  text-align: center;
  font-size: 11px;
  padding-top: 12px;
  padding-bottom: 16px;
  background: #7c7c7c;
  background: #555555;
  padding: 0.3em 0 0.5em;
}
