@import url('https://fonts.googleapis.com/css2?family=Amatic+SC&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Nanum+Pen+Script&display=swap'); */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Amatic SC', cursive;
  /* font-family: 'Nanum Pen Script', cursive; */
}


html {
  scroll-behavior: smooth;
}

body{
  min-height: 100vh;
  background: #444545;
  overflow-x: hidden;
}

#birds-bg {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.landing-text {
  width: 100%;
  text-align: center;
  font-size: 6vh;
  color: white;
  font-weight: 400;
}
#typed {
  font-weight: 500 !important;
  color: #B5FFE9;
}
.typed-cursor {
  color: #B5FFE9;
}

@media only screen and (min-width: 992px) {
  .navbar {
    background-color: #444545 !important;
    box-shadow: 0 2px 0 0 #4A4A4A !important;
  }

  .navbar-options {
    color: white !important;
    margin: 0 2vw !important;
    font-size: 3vh;
  }

  .navbar-brand {
    position: fixed;
  }

  .navbar-item img {
    height: 40px !important;
    max-height: 40px !important;
  }

  .resume-button {
    position: fixed !important;
  }
}

@media only screen and (max-width: 992px) {
  .mobile-face-pic {
    text-align: center !important;
  }

  .face-pic {
    height: 40vw !important;
  }

  .paper {
    width: 75% !important;
  }

  .about-details {
    max-width: none !important;
    font-size: 4vw !important;
    margin-left: 4vw !important;
    margin-right: 4vw !important;
  }

  .notes-section-margin {
    margin-top: 1vh !important;
  }

  #japanese {
    font-family: 'Kosugi Maru', sans-serif !important;
    font-size: 3vw !important;
    display: none;
  }
}

.face-pic {
  height: 15vw;
  margin-right: 3vw;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background-color: #4A4A4A;
}
::-webkit-scrollbar-thumb {
  background-color: #B5FFE9;
  border-radius: 50px;
}

#about-section {
  min-height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
}

.link-effect a {
  padding: 10px 0;
  margin: 0 20px;
  color: #797878;
  text-shadow: none;
  position: relative;
}

.link-effect a::before {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  padding: 10px 0;
  max-width: 0;
  border-bottom: 2px solid #B5FFE9;
  color: #B5FFE9;
  content: attr(data-hover);
  -webkit-transition: max-width 0.75s;
  -moz-transition: max-width 0.75s;
  transition: max-width 0.75s;
}

.link-effect a:hover::before {
  max-width: 100%;
}

*:focus,
*:active {
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}


.wrapper {
  display: inline-flex;
  margin-top: 4vh;
}

.wrapper .icon {
  position: relative;
  background-color: #ffffff;
  border-radius: 50%;
  padding: 15px;
  margin: 10px;
  width: 50px;
  height: 50px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
  position: absolute;
  top: 0;
  font-size: 18px;
  background-color: #ffffff;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background-color: #ffffff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .linkedin:hover,
.wrapper .linkedin:hover .tooltip,
.wrapper .linkedin:hover .tooltip::before {
  background-color: #0077b5;
  color: #ffffff;
}

.wrapper .github:hover,
.wrapper .github:hover .tooltip,
.wrapper .github:hover .tooltip::before {
  background-color: #333333;
  color: #ffffff;
}

.wrapper .gmail:hover,
.wrapper .gmail:hover .tooltip,
.wrapper .gmail:hover .tooltip::before {
  background-color: #ea4335;
  color: #ffffff;
}

.wrapper > a {
  color: #4a4a4a;
}

.scroll-down.arrows span {
  position: absolute;
  display: inline-block;
  top: 30px;
  height: 15px;
  width: 2px;
  left: calc(50% - 1px);
  animation: animateArrows 1.25s infinite linear;
}
@keyframes animateArrows {
  0%, 40%, 100% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
}
.scroll-down.arrows span:first-child {
  top: 45px;
  animation-delay: 0s;
}
.scroll-down.arrows span:nth-child(2) {
  top: 45px;
  animation-delay: .33s;
}
.scroll-down.arrows span:last-child {
  top:  60px;
  animation-delay: .66s;
}
.scroll-down.arrows span::before,
.scroll-down.arrows span::after {
  position: absolute;
  content: "";
  width: 3px;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  border-radius: 3px;
}
.scroll-down.arrows span::before {
  transform-origin: bottom;
  transform: rotate(-45deg);
}
.scroll-down.arrows span::after {
  transform-origin: bottom;
  margin-left: -1px;
  transform: rotate(45deg);
}

.birds-tooltip {
  color: whitesmoke;
  font-size: 2vh;
}

.about-details {
  color: white;
  font-size: 1.5vw;
  max-width: 50vw;
}

#japanese {
  font-family: 'Kosugi Maru', sans-serif !important;
  font-size: 1.22vw;
  display: none;
}

:root {
  --pink: #ecb2ba;
  --pink-dark: #c6939a;
  --tape-gray: #dbd8be;
  --tape-edge-gray: #b7b49d;
  --transparent: rgba(255, 255, 255, 0);
}

.pink {
  --paper-color: var(--pink);
  --paper-dark: var(--pink-dark);
  --shadow-size: 1px;
  --transparent: rgba(236, 178, 186, 0);
}

.blue {
  --paper-color: #d5e0f9;
  --paper-dark: #c2d0ea;
  --shadow-size: 3px;
  --transparent: rgba(213, 224, 249, 0);
}

.paper {
  position: relative;
  background: linear-gradient(
      to bottom right,
      var(--paper-dark),
      20%,
      var(--transparent)
    ),
    var(--paper-color);
  min-width: 280px;
  min-height: 30vh;
  display: flex;
  justify-content: center;
  font-family: "Caveat", cursive;
  font-size: 2rem;
  box-shadow: var(--shadow-size) var(--shadow-size) 2px var(--paper-dark);
  margin: auto;
  margin-top: 50px;
}

.paper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      var(--transparent),
      50%,
      var(--paper-dark),
      51%,
      var(--transparent)
    ),
    linear-gradient(
      to right,
      var(--transparent),
      50%,
      var(--paper-dark),
      51%,
      var(--transparent)
    );
}

.tape-section {
  position: absolute;
  width: 100%;
}

.top-tape {
  position: absolute;
  height: 4vmin;
  top: -5px;
  width: 110%;
  background-color: var(--tape-gray);
  border-right: 1px dotted var(--tape-edge-gray);
  border-left: 1px dotted var(--tape-edge-gray);
  opacity: 0.5;
}

.tape-section:first-of-type {
  top: 0;
}

.tape-section:last-of-type {
  bottom: 0;
}

.tape-section::before,
.tape-section::after {
  content: "";
  width: 10vmin;
  height: 4vmin;
  position: absolute;
  background-color: var(--tape-gray);
  opacity: 0.5;
  border-right: 1px dotted var(--tape-edge-gray);
  border-left: 1px dotted var(--tape-edge-gray);
}

.tape-section:last-of-type::after {
  transform: rotate(-45deg);
  right: -4vmin;
  top: -3vmin;
}

.tape-section:first-of-type::before {
  transform: rotate(-45deg);
  left: -4vmin;
}

.tape-section:first-of-type::after {
  transform: rotate(45deg);
  right: -4vmin;
  top: 0;
}

.tape-section:last-of-type::before {
  transform: rotate(45deg);
  left: -4vmin;
  bottom: 0;
}

.notes-text {
  font-size: 1.35rem !important;
  text-align: center
}

.notes-section-margin {
  margin-top: 5vh;
}