@import url('https://fonts.googleapis.com/css2?family=Momo+Signature&display=swap');
*{
  box-sizing: border-box;
  border-radius: 8px;
}
body{
  margin: 0;
  font-family: "Momo Signature", cursive;
    font-weight: 400;
    font-style: normal;
}
.page {
  border: 4px solid gray;
  padding: 10px;
}

.navbar {
display: flex;
padding: 10px;
align-items: center;
justify-content: space-between;
}

.logo img{
max-width: 275px;
}

.nav-links {
  display: flex;
  gap: 10px;
}

.nav-item {
}

.hero {
  padding: 10px;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;

}

.hero-text {
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.content {
  display: flex;
  gap: 1rem;
  justify-content: space-evenly;
}

.card {
  border: 4px solid #34c9eb;
  padding: 10px;
  border-radius: 8px;
}

.card-1 {
}

.card-2 {
}

.card-3 {

}

.footer {
  padding: 10px;
  border-radius: 8px;
}