* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Oswald;
}
body {
  background-color: hsl(50, 51%, 84%);
}
.navbar {
  background-color: #8bc540;
  height: 80px;
  display: flex;
  justify-content: right;
  align-items: right;
  position: sticky;
  font-size: 1.2rem;
  top: 0;
  z-index: 999;
}
.navbarbox {
  display: flex;
  justify-content: space-between;
  height: 80px;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
}
#navlogo {
  background-color: #c01d2e;
  background-image: linear-gradient(to top, #831521 0%, #e42338 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 2.2rem;
}
.navfoto {
  display: flex;
  justify-content: left;
  margin: 0;
  padding-right: 20px;
  margin-left: 0;
}
.navmenu {
  display: flex;
  align-items: right;
  list-style: none;
  text-align: right;
}
.navbaritem {
  height: 80px;
}
.navbarlink {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0 1rem;
  height: 100%;
}
.navbarlink:hover {
  color: #c01d2e;
  transition: all 0.3s ease;
}
@media (max-width: 300px) {
  #navlogo {
    font-size: 1.8rem;
  }
  .navbari{
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 0;
    background-color: #8bc540;
    padding: 10px;
    width: 100%;
    display: none;
    z-index: 1;
  }  
}
