:root {
  --main-color: #30D158;
  --sub-color: #777777;

  --hover-animation-duration: 100ms;
}

@font-face {
  font-family: 'NanumBarunGothic';
  src: url('../../font/NanumBarunGothic.ttf');
  font-weight: normal;
  font-style: normal;
}


* {
  margin: 0;
  padding: 0;

  z-index: 0;

  transition: all linear var(--hover-animation-duration) 0s;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	transition: background-color 5000s ease-in-out 0s;
	-webkit-transition: background-color 9999s ease-out;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
	-webkit-text-fill-color: var(--main-color) !important;
}

.text {
  font-family: "Argesta Hairline", sans-serif;

  color: white;
}

.text span {
  color: var(--main-color);
}

.text.reverse {
  color: var(--main-color);
}

.text.reverse span {
  color: white;
}

#logo {
  position: fixed;
  height: 32px;
  padding: 4.17vw;

  cursor: pointer;
  z-index: 999;
}

#menu {
  position: fixed;
  right: 0;
  width: 40px;
  height: 24px;
  margin: 4.17vw;

  transition: all ease-in-out 300ms 0s;
  cursor: pointer;
  float: right;

  z-index: 999;
  overflow: hidden;
}

#menu>#line {
  display: inline-block;

  position: absolute;
  width: 100%;
  height: 2px;

  transition: all ease-in-out 300ms 0s;
  background: white;
}

#menu.hide>#line:nth-child(1) {
  top: 0;
  right: 0;

  transform: translateY(0%);
}

#menu.hide>#line:nth-child(2) {
  top: 50%;
  right: 0;

  transform: translateY(-50%);
}

#menu.hide>#line:nth-child(3) {
  top: 100%;
  right: 0;

  transform: translateY(-100%);
}

#menu>#line:nth-child(1),
#menu>#line:nth-child(2),
#menu>#line:nth-child(3) {
  top: 50%;
  right: 0;

  transform: translateY(-50%);
}

#menu.show>#line:nth-child(1),
#menu.show>#line:nth-child(2) {
  transform: translateY(-50%) rotate(30deg) !important;
}

#menu.show>#line:nth-child(3) {
  transform: translateY(-50%) rotate(-30deg) !important;
}

#menu_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: flex-start;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;

  background: black;

  transition: all ease-in-out 300ms 0s;
  z-index: 998;
}

#menu_wrapper.hide {
  top: -100vh;
}

#menu_wrapper>p {
  font-size: 5vw;
  letter-spacing: -2.88px;

  cursor: pointer;
}

#menu_wrapper>p:hover {
  color: var(--main-color);
}

#menu_wrapper>p:hover span {
  color: white;
}

#menu_wrapper>p:not(:first-child) {
  margin-top: 1.66vw;
}

#floating-button {
  position: fixed;
  width: 80px;
  height: 262px;
  line-height:12px;
  top: 10vw;
  right: 0px;
  border: 0px;
  font-size: 28px;
  font-family: "NanumBarunGothic";
  color: black;
  background-color: #30D158;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#floating-button:hover {
  cursor: pointer;
}

@media screen and (max-width: 845px) {
  #menu_wrapper>p {
    font-size: 13.84vw;
  }

  #menu_wrapper>p:not(:first-child) {
    margin-top: 6.15vw;
  }

  #floating-button {
    top: 30vw;
    width: 44px;
    height: 141px;
    line-height: 7px;
    font-size: 16px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }
}



