@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru&display=swap');
* {
  margin: 0;
  padding: 0;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: radial-gradient(#966, #633);
  color: whitesmoke;
  font-family: 'Kiwi Maru', serif;
}
section {
  width: 90%;
  max-width: 600px;
  margin: 2rem auto 3rem;
}
h1 {
  font-weight: 400;
}
nav {
  display: flex;
  flex-flow: row wrap;
  gap: 0.5rem;
}
nav a {
  color: whitesmoke;
  text-decoration: none;
  border: 2px solid whitesmoke;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}
nav a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}
ul {
  padding-left: 1.5rem;
}
