* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: rgb(44, 44, 44);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.logo-name-link {
  color: black;
  text-decoration: none;
}

.logo-name-link:visited {
  color: black;
}

.menu-hamburguer-button svg {
  width: 24px;
  height: 24px;
  fill: black;
}

.menu-hamburguer-button {
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
}

.navbar {
  background-color: white;
  height: 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}

.mobile-menu {
  display: none;
  list-style: none;
  flex-direction: column;
  position: fixed;
  top: 3.5rem; 
  left: 0;
  width: 100vw;
  height: calc(100vh - 3.5rem);
  background-color: bisque;
}

.mobile-menu.show {
  display: flex;
}

.mobile-menu a {
  text-decoration: none;
}

.mobile-menu a:visited {
  color: black;
}



