@font-face {
    font-family: 'InsigniaLTStd';
    src: url('fonts/InsigniaLTStd.woff2') format('woff2'),
        url('fonts/InsigniaLTStd.woff') format('woff'),
        url('fonts/InsigniaLTStd.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    padding: 0;
    margin: 0;
    background-image: url('images/background.jpg');
    background-size: cover;
    background-repeat: no-repeat, repeat;
    background-position: center;
    position: relative;
    min-height: 100vh;
}

.vertical_name {
  font-family: 'InsigniaLTStd', Fallback, sans-serif;
  font-size: 10vh;
  font-weight: normal;
  letter-spacing: 2vh;
  color: #FAD8B6;
  mix-blend-mode: overlay;
  position: absolute;
  max-height: 90vh;
  left: 8vw;
  top: 10vh;
  writing-mode: vertical-lr;
  -webkit-writing-mode: vertical-lr;
  -moz-writing-mode: vertical-lr;
  -ms-writing-mode: vertical-lr;
  text-orientation: upright;
  user-select: none;
  -webkit-user-select: none; /* Chrome/Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+ */
  overflow: hidden;
  cursor: default;
}

.vertical_jpn {
  font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2vh;
  letter-spacing: 1vh;
  font-weight: bold;
  color: #FAD8B6;
  mix-blend-mode: overlay;
  position: absolute;
  left: 8px;
  top: 16px;
  writing-mode: vertical-lr;
  -webkit-writing-mode: vertical-lr;
  -moz-writing-mode: vertical-lr;
  -ms-writing-mode: vertical-lr;
  text-orientation: upright;
  user-select: none;
  -webkit-user-select: none; /* Chrome/Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+ */
  cursor: default;
}

/* not used right now, and might never be used
.menu_right {
  display: flex;
  position: absolute;
  right: 0;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-width: 8vh;
} */

.logo {
  position: absolute;
  top: 0;
  right:0;
}

.socials {
  position: absolute;
  right: 2vh;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2vh;
}

.social {
  transition: transform 0.1s;
}

.social:hover {
  transform: scale(1.05, 1.05);
  transition: transform 0.1s;
}

#social_logo {
  max-height: 4vh;
}

.img-fluid {
    max-height: 4vh;
}

.album_container {
  margin-left: 40px;
  margin-right: 40px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4vh;
}

.CTA {
  border: 4px solid #FAD8B6;
  padding: 0.25rem 4rem;
  font-family: 'InsigniaLTStd', Fallback, sans-serif;
  font-size: 2.5rem;
  font-weight: normal;
  letter-spacing: 0.25rem;
  color: #FAD8B6;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.1s;
}

.CTA:hover {
  transform: scale(1.01, 1.01);
  transition: transform 0.1s;
}

#album {
  max-height: 50vh;
  box-shadow: 0px 100px 100px -100px rgba(0, 0, 0, 0.8);
}

/* Styles for the tilt block */
#tilt {
  display: block;
  transition: transform 0.2s;
  z-index: 100;
}

.footer {
  position: absolute;
  bottom: 8px;
  right: 12px;
  color: #FAD8B6;
  mix-blend-mode: overlay;
}

@media screen and (max-width: 950px) {
  .menu_right {
    align-items: center;
    flex-direction: row;
    justify-content: flex-end;
    min-height: 8vh;
  }

  .socials {
    flex-direction: row;
    height: 8vh;
    left: 50%;
    transform: translate(-50%, 0);
    gap:
  }

  #social_logo {
    max-height: 5vh;
  }

  .CTA {
    border: 3px solid #FAD8B6;
    font-size: 1.5rem;
    padding: 0.25rem 2rem;
  }

  .footer {
    font-size: 0.6rem;
  }
}
