* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  list-style: none;
}

a {
  color: #6c778b;
}

.title {
  font-size: 32px;
}

nav {
  display: flex;
  max-width: 560px;
  margin: 0 auto;
  padding: 4px 0;
  justify-content: space-around;
}

.button {
  background-color: #6c778b;
  color: white;
  font-weight: bold;
  padding: 0 8px;
  border-radius: 4px;
  border: 2px solid black;
  box-shadow: 0 0 3px rgb(0, 0, 0);
  cursor: pointer;
  font-family: 'Patrick Hand SC', cursive;
}

.search {
  margin-left: 8px;
}

body {
  max-width: 800px;
  margin: 0 auto;
  padding: 16px;
  
  display: flex;
  flex-direction: column;
  min-height: 100vh;

  font-family: 'Patrick Hand SC', cursive;
}

#title {
  font-size: 24px;
}

#subtitle {
  font-size: 16px;
}

footer {
  color: #6c778b;
  margin-top: auto;
}

.footer-text {
  display: flex;
  justify-content: center;
}
.git-link {
  display: flex;
  align-items: center;
  margin-left: 4px;
}
.git-icon {
  width: 16px;
}
