@font-face{
    font-family: Original surfer;
    src: url('../font/OriginalSurfer-Regular.ttf');
}
body{
  font-family: 'Original surfer';
}
.navbar {
  background-color: #0fa3b172;
  overflow: hidden;
  
}
.navbar a{
  display: block;
  background-color: #f7a172e6;
  width: 150px;
  height: 40px;
  text-align: center;
  border-radius: 6px;
}

.center_nav_container {
  display: flex;
  justify-content: space-between;
  
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding-left: 0;
  
  
}
.nav-links a {
  display: flex;
  align-items: center;
  background-color: #f7a172e6;
  width: 150px;
  height: 40px;
  justify-content: center;
  border-radius: 6px;
}

.nav-links li {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-right: 60px;

}


.nav-links a {
  color: white;
  text-decoration: none;
}

.menu-icon {
  display: none;
  margin-left: auto;
  margin-right: 5px;
  color: white;
  font-size: 30px;
  cursor: pointer;
  
}

@media only screen and (max-width: 769px) {
  .nav-links{
    padding-left: 2%;
  }
}

@media only screen and (max-width: 600px) {
  
  .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
  }
  .nav-links.active {
      display: flex;
      padding: 0;

  }
  .menu-icon {
      display: block;  
  }
  .nav-links li {
      padding-left: 20px;
      margin: 0;
      width: 100%;
  }
  .nav-links li:first-child {
      padding-top: 30px;
  }
  
}