body {
}
/* Navigation Section */
.navigation,
.section-container {
  max-width: 1140px;
  margin: 0px auto;
  display: flex;
  margin-top: 20px;
  justify-content: space-between;
}
/* Left side */
.left-side {
  display: flex;
  align-items: center;
  gap: 5px;
}
.left-side img {
  width: 40px;
}
.left-side h3 {
  font-size: 10px;
  color: #006747;
  font-weight: 900;
}

/* right side */
.right-main {
  display: flex;
  gap: 5px;
}
.right-main p {
  font-weight: bold;
}

.heart img {
  width: 30px;
}

.coin img {
  width: 30px;
}
.heart {
  background-color: #42ff6b1b;
  border-radius: 10px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.coin {
  background-color: #42ff6b1b;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 10px;
  padding: 5px 10px;
}
.copy {
  background-color: #00a63e;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 10px;
  padding: 5px 10px;
  color: white;
}
/* Banner Section */
.banner h2 {
  font-size: 30px;
}
.banner {
  background: linear-gradient(to left, #013223, #006746d4, #013223);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  padding: 30px;
  margin-top: 10px;
}
.banner img {
  width: 100px;
}
.banner p {
  font-size: 12px;
  margin-top: 13px;
  text-align: center;
}

.card-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
#card,
#history {
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.272);
  border-radius: 10px;
}
