:root {
  --black: #212121;
  --blackDark: #0f0f0f;
  --grey: #4d4d4d;
  --greyDark: #333333;
  --greyLight: #858585;
  --codeEditorGrey: #3c3c3c;
  --blueLight: #6cdae8;
  --blueMuted: #549bb9;
  --blueIntense: #006eff;
  --blueIntenseLight: #4499ff;
  --blueDark: #091063;
  --greenLight: #32d08e;
  --green: #3cc63e;
  --greenDark: #1f6e20;
  --greenNeon: #76ee00;
  --greenBlue: #33CC99;
  --red: #f15f61;
  --redSoft: #FF6F77;
  --magenta: #fc1baa;
  --magentaSoft: #e937a7;
  --yellowMuted: #e1df4d;
  --yellowBright: #fffd38;
  --yellowNeon: #FFFF00;
  --white: #c6ccca;
  --whiteBright: #ffffff;
  --beige: #BBAA99;
  --salmon: #e06959;
  --orange: #f77214;
  --darkOrange: #f55543;
  --purple: #bb77ff;
  --purpleSoft: #a117ad;
  --lavender: #cbc4ff;
  --pink: #ff00aa;
}

a:hover,
button:hover {
  cursor: pointer;
}

.code-large {
  text-align: left;
  font-weight: 400;
  box-sizing: border-box;
  color: var(--blueLight) !important;
  border-radius: 1.5rem;
  padding: .5rem;
  font-family: "Source Code Pro";
  background-color: var(--black);
}

.code {
  text-align: left;
  font-weight: 400;
  box-sizing: border-box;
  color: var(--blueLight) !important;
  border-radius: .5rem;
  padding: .25rem;
  font-family: "Source Code Pro";
  background-color: var(--black);
}

html {
  background-color: var(--black);
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Sf Pro Display";
  color: var(--white);
}

p, ul, a {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
}

ul {
  padding: 0;
  list-style-type: disc;
  margin-left: 2rem;
}

a {
  color: var(--white);
  text-decoration: none;
  transition: all 0.2s ease-in 0s;
  
  &:hover {
    color: var(--blueLight);
  }
}

h1 {
  font-size: 7rem;
  font-weight: 500;

}

h2 {
  font-size: 2.5rem;
  font-weight: 400;
}

h3 {
  font-size: 1.75rem;
  font-weight: 200;
}

body {
  margin: 0;
  min-height: 100vh;
  width: 100vw;
}

#footer {
  position: fixed;
  bottom: 0;
  background-color: rgba(5, 5, 5, .9);
  width: 100%;
  transition: all .2s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 2rem;
  padding-top: .25rem;
}

.footer-link {
  line-height: 1.5rem;
  height: 1.5rem;
}

.footer-column {
  display: flex;
  gap: .2rem;
  flex-direction: column;
}

.footer-content {
  width: 80vw;
  display: flex;
  justify-content: space-between;
}

.partition {
  background-color: var(--grey);
  height: 2px;
  width: 80vw;
  margin: 1rem 0;
}

.opening-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: rgba(5, 5, 5, .9);
  padding: 6rem 6rem 3rem 6rem;
  gap: 1rem;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.8) 4px 3px 8px 2px, rgba(0, 0, 0, 0.75) 1px 2px 2px 1px;
}

.opening-banner h3 {
  max-width: 50%;
}

.section-title-container {
  display:flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem 0 0;
}


.invisible {
  opacity: 0;
  transform: translateY(2rem);
  z-index: -100;
}


.icon {
  fill: var(--blueLight);
  width: 4rem;
  height: 4rem;
}

.section {
  display: flex;
  align-items: center;
  height: 50rem;
  width: 100vw;
}

.info-area {
  width: fit-content;
  max-width: 60%;
  background-color: rgba(40, 40, 40, 0.9);
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: rgba(0, 0, 0, 0.8) 4px 3px 8px 2px, rgba(0, 0, 0, 0.75) 1px 2px 2px 1px;
  margin: 2rem;
  transition: all .5s ease-out;
  display: flex;
  gap: 2rem;
}

.gif {
  width: 40rem;
  max-width: 30vw;
}

.tree {
  position: relative;
  left: 50vw;
  width: 180rem;
  top: -7.25rem;
  z-index: -1000;
  transform: translateX(-50%);
}

.tree-container {
  width: 100%;
  overflow-x: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1000;
}

.navbar {
  font-family: "SF Pro Display", "Ubuntu";
  font-weight: 400;
  box-sizing: border-box;
  height: 5.5rem;
  display: flex;
  -webkit-box-pack: justify;
  background-color: rgb(51, 51, 51);
  -webkit-box-align: center;
  align-items: center;
  z-index: 2;
  padding: 1rem 3rem;
  box-shadow: var(--blackDark) 0px 1px 2px;
}

.logo {
  box-sizing: border-box;
  color: rgb(108, 218, 232);
  z-index: 3;
  width: 4rem;
  height: 4rem;
  margin-right: 1rem;
}

.custom-button-big {
  font-family: "SF Pro Display", "Ubuntu";
  font-weight: 400;
  position: relative;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  border-radius: calc(1.5rem);
  border: 2px solid var(--white);
  text-align: center;
  white-space: nowrap;
  background-position: center center;
  transition: background 0.8s ease 0s;
  color: var(--white);
  background-color: var(--black);
  padding: 0em 1em;
  height: 3rem;
  font-size: calc(1.575rem);
  box-sizing: content-box;
  box-shadow: var(--blackDark) 0px 2px 2px;
  fill: var(--white);
  text-decoration: none;
  
  &:hover {
    background-color: var(--blackDark);
    color: var(--blueLight);
    fill: var(--blueLight);
    transition: all 0.1s ease-in 0s;
    border: 2px solid var(--blueLight);
  }
}

.custom-button {
  font-family: "SF Pro Display", "Ubuntu";
  font-weight: 400;
  text-decoration: none;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  border-radius: calc(15px);
  border: 2px solid var(--white);
  text-align: center;
  white-space: nowrap;
  background-position: center center;
  transition: background 0.8s ease 0s;
  color: var(--white);
  background-color: var(--black);
  padding: 0em 0.8em;
  height: 30px;
  font-size: 1.25rem;
  box-sizing: content-box;
  box-shadow: var(--blackDark) 0px 2px 2px;
  fill: var(--white);
  margin-top: 1rem;
  min-width: 4rem;
  width: fit-content;

  &:hover {
    background-color: var(--blackDark);
    color: var(--blueLight);
    fill: var(--blueLight);
    transition: all 0.1s ease-in 0s;
    border: 2px solid var(--blueLight);
  }
}

@media screen and (max-width: 1000px) {
  .custom-button-big {
    font-size: 3rem;
    border-radius: 2rem;
    height: 5rem;
  }

  .custom-button {
    font-size: 2rem;
    border-radius: 1.5rem;
    height: 3rem;
  }
  
  .opening-banner {
    height: 100vh;
    padding: 1rem;
  }

  .opening-banner h3 {
    max-width: 90%;
  }

  .navbar {
    height: 0;
    padding: 0;
    opacity: 0;
  }

  .section {
    justify-content: center !important;
    height: unset;
  }
  
  .info-area {
    flex-direction: column;
    max-width: 100%;
    transition: all .25s ease-out;
  }

  .gif {
    max-width: 85%;
    align-self: center;
  }
  
  #footer {
    position: unset;
  }

  p, ul, a {
    font-size: 1.5rem;
  }
  
  a {
    align-self: center;
  }

  h2 {
    font-size: 3rem;
  }
  
  h3 {
    font-size: 2rem;
  }
}