* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
nav.global-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #e75252;
  z-index: 1000;
}
nav.global-nav h1 {
  flex: 1;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin: 0;
}
nav.global-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
nav.global-nav li {
  margin: 0 10px;
  padding: 5px 10px;
  border: 2px double whitesmoke;
}
nav.global-nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
}
nav.global-nav a:hover {
  text-decoration: underline;
}
nav.global-nav .global-menu-icon {
  display: none;
  cursor: pointer;
  font-size: 30px;
}
@media (max-width: 768px) {
  nav.global-nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #e75252;
    padding: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  nav.global-nav li {
    margin: 10px 0;
  }
  nav.global-nav .global-menu-icon {
    color: rgb(0, 255, 0);
    display: block;
  }
}
