@import url("https://fonts.cdnfonts.com/css/montserrat");
@import url("https://fonts.cdnfonts.com/css/inter");
* {
  box-sizing: border-box;
  margin: unset;
  padding: unset;
  font-family: "Inter", sans-serif;
}

h1 {
  font-size: 4vw;
  line-height: 4.5vw;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
}

h2 {
  font-size: 2vw;
  line-height: 2.5vw;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

p {
  font-size: 1.125vw;
  line-height: 1.625vw;
  font-weight: 100;
}

a {
  font-size: 1.125vw;
  line-height: 1.625vw;
  font-weight: 200;
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: 0.5s all;
}
a:hover {
  color: white;
  transition: 0.5s all;
}

button {
  padding: 0.5vw 2vw;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  border: 2px solid var(--ot-text, #FDC830);
  border-radius: 0.75vw;
  background: rgba(0, 0, 0, 0.25);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5vw;
  line-height: 2vw;
  transition: 0.5s all;
  cursor: pointer;
}

body {
  padding: 0;
  margin: 0;
  background: linear-gradient(344deg, #4CA1AF 0%, #2C3E50 100%);
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  min-height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  position: relative;
}

nav {
  top: 0;
  left: 0;
  position: absolute;
  display: flex;
  background: transparent;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 1.5vw 5vw;
  z-index: 2;
}
nav img {
  width: 3vw;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 1vw;
}

.disabled {
  opacity: 50%;
  cursor: none;
}
.disabled:hover {
  color: white;
  padding: 0.5vw 2vw;
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0;
  transition: 0.5s all;
}

main {
  display: flex;
  z-index: 0;
  width: 100vw;
  min-height: 100%;
  height: 100%;
}
main div {
  display: flex;
  background: rgba(0, 0, 0, 0);
  gap: 1vh;
  min-height: 100%;
  height: 100%;
  flex-direction: column;
  padding: 5vw;
  justify-content: center;
  align-items: start;
  flex: 1;
  width: 50vw;
  text-align: left;
  transition: all 0.3s;
}
main div button {
  margin-top: 4vh;
}
main div:hover {
  background: rgba(255, 255, 255, 0.2705882353);
  transition: all 0.3s;
  color: black;
}
main .right {
  background: rgba(0, 0, 0, 0.1450980392);
}
main .right:hover button {
  color: white;
  padding: 0.5vw 1.25vw;
  background: rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 20.1px 0px rgba(253, 200, 48, 0.25);
  transition: 0.5s all;
}

@media all and (max-width: 480px) {
  body {
    max-height: -moz-fit-content;
    max-height: fit-content;
    overflow: scroll;
  }
  button {
    padding: 1vw 6vw;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    border: 2px solid var(--ot-text, #FDC830);
    border-radius: 4vw;
    background: rgba(0, 0, 0, 0.25);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5vw;
    line-height: 8.5vw;
    transition: 0.5s all;
    cursor: pointer;
  }
  nav {
    top: 0;
    left: 0;
    position: absolute;
    display: flex;
    background: transparent;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 6vw 10vw;
    z-index: 2;
  }
  nav img {
    width: 12.5vw;
  }
  nav ul {
    display: flex;
    list-style: none;
    gap: 5vw;
  }
  nav ul li a {
    font-size: 4vw;
  }
  h1 {
    font-size: 10vw;
    line-height: 12vw;
    font-weight: 800;
    font-family: "Montserrat", sans-serif;
  }
  h2 {
    font-size: 6vw;
    line-height: 8vw;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
  }
  main {
    flex-direction: column;
  }
  main div {
    width: 100vw;
    padding: 5vw 10vw;
  }
  main div button {
    margin-top: 2vh;
  }
  main .left {
    padding-top: calc(10vh + 5vw);
    height: 55vh;
  }
  main .right {
    height: 45vh;
  }
}/*# sourceMappingURL=styles.css.map */