/* BASE Settings BEIGINS */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  background-color: #White;
  overflow: ;
  font-family: monospace;
}
html {
  align-items: center;
  align-content: center;
  align-self: center;
  text-align: center;
}

nav {
  width: 100%;
  background: #444;

}
h1 {
  padding: 1rem;
  margin: 1rem;
}

footer {
  position: fixed;
  width: 100%;
  bottom: 0px;
  text-decoration-color: white;
}

nav ul {
  display: flex;
  height: 60px;
  align-items: center;
  justify-content: space-around;


}

nav ul li  {[]

  flex: auto;


}
nav ul li a {

  color: white;
}
nav ul li a:hover {

  color: #ff692f;
}


input {
  border-radius: 10px;
  line-height: 2.5rem;
  font-family: sans-serif;
  font-size: 24px;
}


button {
  line-height: 2.5rem;
  margin: 1rem;
  padding: 1rem;
  font-size: 1.5rem;
  font-family: sans-serif;
  border-radius: 10px;
  color: white;
  background-color: #777;
}

button:hover {
  background-color: #ff692f;
}
