/* General style */
:root {
    --white: #f0f0f0;
    --black: #101010;
}
@media (prefers-color-scheme: dark) {
  :root {
    --background: #0a0a0a;
    --foreground: #ededed;
    --ancient-green: #036873;
    --beige: #F2F0CE;
  }
}
html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}
body {
    color: var(--white);
    background: var(--black);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    transition: all 0.2s ease;
}
a {
    text-decoration: none;
}
@media (prefers-color-scheme: dark) {
    html {
        color-scheme: dark;
    }
}

/* Navbar style */
.navbar_container {
  width: 100%;
  height: 3.5vw;
  padding-top: 1.6vw;

  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.navbar_links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.7vw;

  width: 30vw;
  height: 3vw;

  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);

  transition: all 0.6s ease-out;
}
.navbar_link {
  width: 6vw;
  height: 2vw;

  text-align: center;
  color: var(--white);
  border-radius: 10px;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 0.8vw;
  letter-spacing: 0.7;
  font-weight: 700;

  transition: all 0.5s ease;
}
.navbar_link:hover {
  background-color: rgba(255, 255, 255, 0.4);
  filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.3));
}
.navbar_link_active {
  background-color: var(--black);
  color: var(--white);
}


/* Other page style */
main{
  margin-top: 10vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* Landing page style */
.main_title{
  font-size: 2.5vw;
  font-weight: 700;
  margin-bottom: 2vw;
}
.main_subtitle{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main_subtitle img{
  width: 70%;
  height: auto;
}
.main_button{
  font-weight: 100;
  font-size: 1vw;
}
.main_cta{
  height: 10vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}
.btn{
  padding: 0.8vw 2vw;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  font-weight: 400;
  font-size: 1vw;
  cursor: pointer;
  transition: all 0.5s ease;
}
.btn:hover{
  filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.2));
  background-color: rgba(255, 255, 255, 0.6);
}
