@import url('https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400;500;600;700;800&display=swap');

* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}

*::selection {
  background-color: rgb(21, 72, 74);
  color: rgb(255, 223, 211);
}

body {
  padding: 10px 20px;
  background-color: rgb(255, 250, 244);
}

.nav-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2vw;
}

.nav-box li {
  list-style: none;
  padding: 5px 10px;
  color: rgb(249, 197, 165);
  font-family: monospace;
  font-weight: 600;
  font-size: 1.2rem;
  border: 1px solid rgb(14, 55, 55);
  border-radius: 0 0.5rem;
  background-color: rgb(14, 55, 55);
  transition: 0.2s all ease-in-out;
  cursor: pointer;
}

.nav-box li:hover,
.nav-box li:active {
  border: 1px solid black;
  background-color: aquamarine;
  color: rgb(247, 127, 42);
}

.nav-box li a {
  text-decoration: none;
  color: inherit;
}

/* For my phone */
@media only screen and (max-width: 600px) {
  .nav-box {
    justify-content: space-evenly;
    gap: 2vw;
  }

  .nav-box li {
    gap: 1vw;
    font-size: 0.9rem;
    font-weight: 700;
  }
}
