@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");

* {
  font-family: "Pacifico", cursive;
  background-color: #fff;
}

body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.logo {
  width: 250px;
  height: 250px;
}

.title {
  color: #000;
}

.menu-section {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  margin-top: 20px;
  margin-bottom: 200px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-decoration: none;
  color: transparent;
}

.nav-label {
  font-size: 1.3rem;
  color: #000;
}

footer {
  position: absolute;
  bottom: 0;
}
