* {
  padding: 0;
  margin: 0;
  outline: 0;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
  letter-spacing: 1.5px;
  font-family: arial;
}

body {

  height: 100vh;
  position: relative;
  padding-top: 100px;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: white;
  padding: 8px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
}

.navbar .logo {
  width: 50px;
  margin-top: 3px;
  /*border-radius: 50%;*/
  /*box-shadow: 0px 0px 5px 0px white;*/
}

.navbar-links {
  display: flex;
  width: 400px;
  max-width: 50%;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.navbar-links a {
  display: block;
  height: 60%;
  color: black;
  font-weight: bold;
  padding: 18px 40px;
  transition: 0.3s all;
}

.navbar-links a:hover {
  background: rgba(255, 255, 255, 0.6);
  color: #03DEFA;
  border-radius: 6px;
}

.toggle {
  position: absolute;
  right: 12px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  width: 40px;
  height: 40px;
  padding: 2px 8px;
  cursor: pointer;
  box-shadow: 0px 0px 4px 0px white;
}

.bar {
  border: 1px solid white;
  width: 100%;
  margin: 3px;
}

@media (max-width: 650px) {
  .navbar-links {
    display: none;
    margin: 4px auto;
  }

  .toggle {
    display: flex;
  }
}
