@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  --primary-color: #ec4899;
}
body {
  font-family: "Poppins", system-ui;
  background-color: #f6f3f9;
}
a {
  text-decoration: none;
  color: black;
}
header {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header > a {
  font-weight: 600;
  color: black;
}
header > input {
  padding: 5px;
  display: block;
  border: 2px solid var(--primary-color);
  font-size: 15px;
  border-radius: 5px;
}
header > button {
  background-color: transparent;
  border: none;
}
header > ul {
  position: absolute;
  background-color: var(--primary-color);
  top: 0;
  padding: 10px;
  left: 0;
  display: none;
  height: 100%;
}
li {
  list-style-type: none;
  margin: 20px;
}
li > a {
  color: white;
}
#body {
  padding: 20px 30px;
}
h1 {
  font-weight: 600;
}
.main-collection-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0;
  justify-content: start;
}
.collection-container {
  background-color: white;

  /* padding: 10px; */
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}
.collection-container > img {
  display: block;
  width: 150px;
  height: 150px;
  /* border-radius: 10px; */
}
.collection-details {
  margin: 10px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-weight: 500;
  padding: 10px;
}
.nav-items {
  color: white;
}
li > button {
  background-color: transparent;
  border: none;
  font-weight: 600;
  font-weight: 15px;
  color: white;
}
.footer {
  background-color: black;
  margin: 0;
  padding: 10px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.footer-title {
  color: var(--primary-color);
}
.list-items > a {
  color: white;
}
#wallet-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  gap: 10px;
  flex-direction: row;
  flex-wrap: wrap;
}
#wallet-container > button {
  background-color: var(--primary-color);
  color: white;
  font-size: 22px;
  border: none;
  padding: 10px;
  cursor: pointer;
}
#error-container {
  display: flex;
  justify-content: center;
  align-items: center;

  height: 100vh;
  width: 100vw;
}
#error-container > p {
  color: black;
  font-size: 24px;
}

@media screen and (min-width: 700px) {
  header > button {
    display: none;
  }
  li > a {
    color: black;
  }
  header > a {
    font-size: 26px;
  }
  li > button {
    color: black;
  }
  header > ul {
    position: relative;
    background-color: transparent;
    display: block;
    height: auto;
  }
  header > input {
    font-size: 19px;
    width: 20%;
    /* padding: 13px; */
  }
  .main-collection-container {
    justify-content: start;
    gap: 20px;
  }
  .nav-items {
    display: inline-block;
    margin: 0 5px;
    font-weight: 600;
    font-size: 15px;
    color: black;
  }
  .collection-container > img {
    height: 200px;
    width: 200px;
  }
  .footer {
    justify-content: space-around;
  }
}
@media screen and (min-width: 1000px) {
  header {
    padding: 15px 25px;
    /* background-color: ba; */
  }
  header > input {
    width: 400px;
    padding: 14px;
  }
}
