@font-face {
  font-family: "indivisible-variable", sans-serif;
  font-variation-settings: "wght" 400;
}

h1 {
  font-family: "indivisible-variable", sans-serif;
  font-variation-settings: "wght" 400;
}

html {
  font-family: "indivisible-variable", sans-serif;
  background: var(--bg-color);
  color: var(--body-color);
  user-select: none;
  height: 100%;
  width: 100%;
}

:root {
  --bg: #023047;
  --text: #FFB700;
  --body: #FFB700;
  --hover: #FFB700;
  --active: #023047;
  --hover-text: #023047;

  --highlight: 1b4079;

  --active-text: E6FAFC;

  --transparent: #ffe66d00;

  --shadow: #1a1b417f;

  --body-color: rgb(255, 255, 255);

  --init-button-hover-color: rgba(157, 140, 255, 0);

  --dark-shadow: rgba(0, 0, 0, 0.514);
  --recess: rgba(255, 255, 255, 0.514);

  --bg-color: var(--bg);

  /*--body-accent:#75DBCD;*/

  --bg-grid: 60px 60px;

  --button-bg: var(--hover-text);

  --bg-gradient: linear-gradient(
      0deg,
      transparent 47%,
      rgba(255, 255, 255, 0.05) 47%,
      rgba(255, 255, 255, 0.05) 53%,
      transparent 53%
    ),
    linear-gradient(
      90deg,
      transparent 47%,
      rgba(255, 255, 255, 0.05) 47%,
      rgba(255, 255, 255, 0.05) 53%,
      transparent 53%
    );
  /*linear-gradient(338deg, #5465FF 0%, #8b97ff 100%);*/
  --nav-mobile-bg-gradient: var(--button-bg);
  /*linear-gradient(185deg, hsl(320, 100%, 85%) 0%,hsl(17, 100%, 83%) 20%,hsl(44, 100%, 87%) 40%,hsl(97, 100%, 94%) 60%,hsl(165, 100%, 91%) 80%, rgb(184, 229, 255) 100%)*/
  --nav-desktop-bg: var(--button-bg);
  /*linear-gradient(185deg, hsl(320, 100%, 72%) 0%,hsl(17, 100%, 71%) 20%,hsl(44, 100%, 76%) 40%,hsl(98, 100%, 90%) 60%,hsl(165, 100%, 78%) 80%, rgb(35, 149, 214) 100%);*/
  --nav-shadow-color: var(--hover-text);

  --nav-button-color: var(--text);
  --nav-button-border-color: var(--transparent);
  --nav-button-bg-color: var(--init-button-hover-color);

  --nav-button-hover-color: var(#f4cbc6);
  --nav-button-hover-border-color: var(--hover);
  --nav-button-hover-bg-color: var(--hover);

  --nav-button-active-color: var(--active-text);
  --nav-button-active-border-color: ar(--active);
  --nav-button-active-bg-color: var(--active);

  --nav-border-color: var(--button-bg);

  --contact-button-color: var(--body);
  --contact-button-border-color: var(--body);
  --contact-button-bg-color: var(--transparent);

  --contact-button-hover-color: #1a1b41;
  --contact-button-hover-shadow-color: var(--hover-text);
  --contact-button-hover-border-color: var(--hover-text);
  --contact-button-hover-bg-color: var(--hover-text);

  --contact-button-active-color: var(--highlight);
  --contact-button-active-border-color: var(--hover);
  --contact-button-active-bg-color: var(--hover);

  --expand-dong-color: var(--text);

  --nav-item-shadow-color: var(--dark-shadow);
  --contact-button-shadow-color: var(--hover-text);
  --contact-button-shadow-active-color: var(--hover);

  --button-recess-color: var(--dark-shadow);
  --box-recess-color: var(--recess);
  --box-border-color: var(--recess);
}

@media only screen and (orientation: portrait) {
  .woop {
    /*transform: rotate(90deg);*/
    font-size: 4em;
    top: 0px;
    font-variation-settings: "wght" 700;
  }

  .woop:hover {
    letter-spacing: -0.95rem !important;
    transition: letter-spacing 1s cubic-bezier(0, 0.95, 0.26, 1),
      font-variation-settings 1s cubic-bezier(0, 0.95, 0.26, 1);
    font-variation-settings: "wght" 700 !important;
;
  }

  nav {
    bottom: 0;
  }

  nav-list {
    display: table-column !important;
    /*transform: translateX(calc(-50vw + 80px));*/
    transition: all 0.25s cubic-bezier(0.79, 0.21, 0.15, 0.95);
  }

  nav-list.active {
    display: table-column !important;
    transform: translateY(0px);
    width: 90%;
  }

  nav-list > a:not(.current) {
    display: none;
  }

  nav-list.active > a:not(.current) {
    display: inline;
  }

  nav {
    transition: all 0.25s cubic-bezier(0.79, 0.21, 0.15, 0.95);
    height: 10%;
    width: calc(100% - 26px) !important;
    background: var(--nav-mobile-bg-gradient) !important;
    border: var(--nav-border-color) 3px solid;
  }

  nav.active {
    display: inline-flex;
    transform: translateY(0px);
    height: calc(60% - 26px);
  }

  hero > h1 {
    font-size: 80px;
    white-space: nowrap;
  }

  .container {
    overflow: auto;
  }

  .container.box {
    box-shadow: 0px 10px 30px -10px var(--box-recess-color);
    border: var(--box-border-color) 1px solid !important;
    padding: 1em;
    border-radius: 3px;
    color: var(--body-color);
  }

  nav-item:hover {
    background-color: var(--nav-button-hover-bg-color);
    color: var(--nav-button-hover-color);
    padding: 20px 60px;
    border-radius: 5px;
    font-weight: 900;
    transition: all 0.25s cubic-bezier(0.79, 0.21, 0.15, 0.95);
    border: var(--nav-button-hover-border-color) solid 1px;
  }

  nav-item:active {
    background-color: var(--nav-button-active-bg-color);
    color: var(--nav-button-active-color);
    padding: 20px 60px;
    border-radius: 5px;
    border: var(--nav-button-active-border-color) solid 1px;
    font-weight: 900;
    box-shadow: 0px 10px 30px -10px var(--button-recess-color) inset;
    transition: all 0.25s cubic-bezier(0.79, 0.21, 0.15, 0.95);
  }

  hero-container {
    align-items: stretch;
  }

  contactscontainer {
    line-height: 1cm;
  }

  stuffscontainer {
    line-height: 1cm;
  }

  contactbutton {
    display: block !important;
    text-align: center;
    white-space: normal;
    padding: 0.25em 1em !important;
  }
}

@media only screen and (orientation: landscape) {
  .hamburgerBTN {
    display: none !important;
  }

  nav {
    top: 0;
  }

  hero > h1 {
    font-size: 120px;
    white-space: nowrap;
  }

  hero-container {
    align-items: center;
  }

  .container {
    margin-top: 150px;
  }

  contactscontainer {
    line-height: 2cm;
  }

  contactbutton {
    white-space: nowrap;
  }
}

/* 

all oethere

*/

body {
  height: calc(100% - 5px);
  width: 100%;
  margin: 0px;
}

::-webkit-scrollbar {
  width: 10px;
  border-radius: 100em;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 100em;
}

a.link {
  border-bottom: var(--body-color) 1px solid;
}

.navlink {
  text-decoration: none;
  margin: 20px;
}

.hamburgerBTN {
  font-family: "indivisible-variable";
  position: fixed;
  font-weight: 100;
  height: 48px;
  width: 48px;
  bottom: 10px;
  right: 10px;
  font-size: 1.5rem;
  padding: 10px;
  height: 20px;
  width: 20px;
  color: var(--expand-dong-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 6;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.79, 0.21, 0.15, 0.95);
}

.hamburgerBTN.active {
  transform: rotate(405deg);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--hover);
}

nav {
  background: var(--nav-desktop-bg);
  position: fixed;
  /*mix-blend-mode: hard-light;
    backdrop-filter: blur(10px);*/
  height: 80px;
  left: 0;
  min-height: 50px;
  width: calc(100% - 20px);
  color: var(--nav-button-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 4;
  white-space: nowrap;
  margin: 10px;
  border-radius: 10px;
  box-shadow: 0px 10px 30px -10px var(--nav-shadow-color);
  transition: all 1s cubic-bezier(0, 0.95, 0.26, 1);
}

nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 4;
  white-space: nowrap;
}

nav-item {
  height: 100%;
  color: var(--nav-button-color);
  background-color: var(--nav-button-bg-color);
  display: flex;
  padding: 20px;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  transition: all 0.5s cubic-bezier(0, 0.95, 0.26, 1);
  border: var(--nav-button-border-color) solid 1px;
}

nav-item:hover {
  background-color: var(--nav-button-hover-bg-color);
  color: var(--nav-button-hover-color);
  padding: 20px 60px;
  border-radius: 5px;
  font-weight: 900;
  transition: all 0.5s cubic-bezier(0, 0.95, 0.26, 1);
  border: var(--nav-button-hover-border-color) solid 1px;
}

nav-item:active {
  background-color: var(--nav-button-active-bg-color);
  color: var(--nav-button-active-color);
  padding: 20px 60px;
  border-radius: 5px;
  font-weight: 900;
  box-shadow: 0px 10px 30px -10px var(--nav-item-shadow-color) inset;
  transition: all 0.5s cubic-bezier(0, 0.95, 0.26, 1);
  border: var(--nav-button-active-border-color) solid 1px;
}

.container {
  margin: 30px;
  width: calc(100% - 60px);
  height: calc(100% - 180px);
  z-index: 3 !important;
  overflow: auto;
}

hero-container {
  background-size: var(--bg-grid) !important;
  background: var(--bg-gradient);
  background-size: cover;
  background-position: center;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  color: var(--body-color);
  display: flex;
  justify-content: center;
  z-index: 0;
  position: absolute;
}

a {
  color: var(--body-color);
  text-decoration: none;
}

contactbutton {
  display: inline;
  background-color: var(--contact-button-bg-color);
  border: var(--contact-button-border-color) 1px solid;
  padding: 1em;
  border-radius: 3px;
  margin: 0.2em;
  user-select: none;
  -webkit-user-drag: none;
  color: var(--contact-button-color);
  transition: all 0.25s cubic-bezier(0.67, 0.27, 0.31, 0.86);
}

contactbutton:hover {
  border: var(--contact-button-hover-border-color) 1px solid;
  border-radius: 5px;
  margin: 0.2em;
  background: var(--contact-button-hover-bg-color);
  color: var(--contact-button-hover-color);
  transform: translateY(-6px);
  box-shadow: 0px 10px 20px -5px var(--contact-button-shadow-color);
}

contactbutton:active {
  border: var(--contact-button-active-border-color) 1px solid;
  border-radius: 7px;
  margin: 0.2em;
  color: var(--contact-button-active-color);
  background: var(--contact-button-active-bg-color);
  box-shadow: 0px 10px 20px -5px var(--contact-button-shadow-active-color);
}

hero {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: inline-flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  background: rgba(0, 0, 0, 0);
  transition: transform 1.5s cubic-bezier(0, 0.95, 0.26, 1);
}

h2 {
  font-size: 4rem;
}

.woop {
  margin: 10px;
  transition: all 0.5s cubic-bezier(1, 0, 0.6, 1);
  font-weight: 400;
  z-index: 20;
}

.woop:hover {
  letter-spacing: 1rem;
  transition: letter-spacing 0.5s cubic-bezier(0, 0.95, 0.26, 1),
    font-weight 0.5s cubic-bezier(0, 0.95, 0.26, 1);
  font-weight: 900;
}

spacefix {
  width: 100%;
  height: calc(100% - 10px);
  display: inline-block;
  z-index: 0;
}

paragraphcontainer {
  font-size: 1.5em;
}

stuffsep {
  margin-bottom: 2em;
}

stuffsep a {
  font-weight: 700;
}

:root {
  --mainColor: #ff9800;
}

link::before {
  transform: scaleX(0);
  transform-origin: bottom right;
}

link:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}

link::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0 0 0 0;
  background: hsl(200 100% 80%);
  z-index: -1;
  transition: transform 0.5s ease;
}

@media (orientation: landscape) {
  body {
    grid-auto-flow: column;
  }
}

body::before {
  content: "";
  position: fixed;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.8);
  z-index: 100;
}

.ulink {
  background: linear-gradient(0deg, #00f, #00f) no-repeat right bottom / 0
    var(--bg-h);
  /*  Moved to a feature query to detect motion settings.  */
  /* transition: background-size 350ms; */
  --bg-h: 100%;
  /*  Move the color to here since I killed other a.  */
  color: inherit;
  /*  Making the default underline a bit better.  */
  text-underline-offset: 0.1em;
  text-decoration-color: #00f;
}

/* If they have not shown a preference for reduced */
/* motion, then allow the transition to happen.    */
@media (prefers-reduced-motion: no-preference) {
  .ulink {
    transition: background-size 350ms;
  }
}

.ulink:focus {
  outline: none;
}

.ulink {
  padding-bottom: 0.1em;
  --bg-h: 0.2em;
  color: inherit;
}

.ulink {
  text-decoration: underline;
}
