/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v49-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/roboto-v49-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/roboto-v49-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
.nav {
  height: 9.8vh;
  padding: 0 2vw;
  /* background-color: lightblue; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  outline: 0.15vw solid black;
  background-color: black;
}
.nav_logo {
  height: 4vh;
}
.nav_title {
  font-size: 1.25vw;
  font-weight: 500;
  text-transform: uppercase;
}
.nav_links{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 1vw;
}
.login_btn {
  border: none;
  padding: 0.6vw 1.2vw;
  border-radius: 0.4vw;
  background-color: #fbd238;
  cursor: pointer;
  box-shadow: rgba(255, 220, 61, 0.571) 0px 7px 29px 0px;
  transition: 1s;
  font-size: 0.9vw;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: black;
}
.login_btn:hover {
  transition: 1s;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}