@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Gasoek+One&family=Google+Sans+Code:ital,wght,MONO@0,300..800,1;1,300..800,1&family=Instrument+Serif:ital@0;1&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');
* {
  margin: 0;
  box-sizing: border-box;
  font-family: "Archivo";
}

select {
  appearance: none;
  -webkit-appearance: none;
}

h2{
  font-family: "Instrument Serif";
}

body {
  justify-content: center;
}

.hero {
  position: relative;
  width: 100vw;
  min-height: 100vh;
}

#heroimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#nav {
  position: absolute;
  top: 4vh;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 73.5vw;
  height: 10vh;
  border-radius: 60px;
  display: flex;
  align-items: center;
  gap: 3vw;
  padding: 0 2.5vw;
  z-index: 999;

  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.nav-a {
  color: black;
  font-size: 2vh;
  text-decoration: none;
}

#nav a {
  text-decoration: none;
}

#nav-home {
  background: #161616;
  color: white;
  padding: 1.5vh 2vw;
  border-radius: 31px;
}

img {
  -webkit-user-drag: none;
}
