body,
.title {
  font-family: "Nanum Gothic Coding", monospace;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: floralwhite;
}

button {
  background: transparent;
  cursor: pointer;
  border: none;
  outline: none;
}

nav {
  width: 100%;
  max-width: 900px;
}

.nav-up {
  position: fixed;
  top: 0;
}

.btn {
  width: 30px;
  height: 30px;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 10px;
  color: white;
  background-color: mediumpurple;
}

.nav-bottom {
  position: fixed;
  bottom: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.up,
.down {
  background-color: palevioletred;
}

.up {
  margin-bottom: 0;
}

.title {
  padding: 5px 30px;
  margin: 30px;
  border: 2px solid lightpink;
  border-radius: 20px;
  background-color: white;
}

h1 {
  padding: 10px;
  margin: 0px;
  font-size: 32px;
  color: mediumpurple;
  text-align: center;
}
h4 {
  padding-bottom: 10px;
  font-size: 16px;
  margin: 0px;
  color: lightpink;
  text-align: center;
}

.container {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 70%;
  max-width: 800px;
}

img {
  width: 15px;
  height: auto;
  padding: 1px;
}

.rabbit {
  transition: all 150ms ease-out;
}

.rabbit:hover {
  transform: scale(3);
}
