@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Poppins:wght@400;500;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

li {
  list-style-type: none;
}

a,
p {
  text-decoration: none;
  font-size: 16px;
}

header {
  width: 100%;
  background-color: rgb(13, 20, 43);
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

header nav {
  display: flex;
  justify-content: space-between;
  padding: 2em 10em;
}

header nav p {
  font-size: 2em;
}

header nav ul {
  display: flex;
  justify-content: space-between;
  width: 30em;
  align-items: center;
}

header nav ul li {
  height: fit-content;
  width: fit-content;
  padding: 5px 15px;
}

header nav ul li:hover {
  background-color: rgb(192, 206, 255);
  cursor: pointer;
  border-radius: 0.4em;
}

header nav ul li a {
  font-size: 20px;
}

header nav ul a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: fit-content;
  width: fit-content;
  color: white;
}

header nav ul a button {
  border-collapse: collapse;
  border: 1px solid black;
  background-color: rgb(0, 218, 0);
  color: black;
  padding: 10px 30px;
  font-size: 20px;
  border-radius: 0.5em;
}

header nav ul a button:hover {
  background-color: rgb(0, 134, 0);
}

#hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background-image: url("./assets/img/pc.jpg");
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

#hero #wrapper {
  color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
}

#hero #wrapper a button {
  border-collapse: collapse;
  padding: 1em 3em;
  border: 1px solid rgb(192, 206, 255);
  font-size: 16px;
  border-radius: 10px;
  background-color: rgb(192, 206, 255);
  display: flex;
  gap: 10px;
  transition: 0.3s;
}

#hero #wrapper a button:hover {
  background-color: transparent;
  color: rgb(192, 206, 255);
}

#hero #wrapper a button i {
  width: fit-content;
  height: fit-content;
}

#items {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#itemsWrapper {
  height: 70%;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6em;
}

#items #itemsWrapper h2 {
  border-bottom: 6px solid black;
}

#items #itemsWrapper .card-wrapper {
  display: flex;
  gap: 3em;
}

#items #itemsWrapper .card-wrapper .card {
  height: fit-content;
  width: 24em;
  background-color: white;
  border: 2px solid black;
  display: flex;
  flex-direction: column;
  gap: 6em;
  border-radius: 1em;
}

#items #itemsWrapper .card-wrapper label {
  height: 16em;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#items #itemsWrapper .card-wrapper label img {
  height: 100%;
  width: 100%;
  border-top-left-radius: 0.7em;
  border-top-right-radius: 0.7em;
}

#items #itemsWrapper .card-wrapper label p {
  display: flex;
  justify-content: center;
}

#items #itemsWrapper .card-wrapper .card a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0px 1em 1em 0px;
}

#items #itemsWrapper .card-wrapper .card a span {
  background-color: rgb(13, 20, 43);
  padding: 0.7em 2em;
  border-radius: 0.6em;
  border: 2px solid rgb(13, 20, 43);
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

#items #itemsWrapper .card-wrapper .card a span:hover {
  background-color: transparent;
  padding: 0.7em 2em;
  border-radius: 0.6em;
  border: 2px solid rgb(13, 20, 43);
  color: rgb(13, 20, 43);
}

#items #itemsWrapper .card-wrapper .card a span i {
  height: fit-content;
  width: fit-content;
}

footer {
  height: 15em;
  width: 100%;
  background-color: rgb(13, 20, 43);
  display: flex;
  justify-content: center;
  align-items: center;
}

footer * {
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
}

#footerWrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 90%;
  height: 80%;
}

#footerWrapper #addressContactWrapper {
  display: flex;
  justify-content: space-between;
}

#footerWrapper #addressContactWrapper #contact {
  display: flex;
  flex-direction: row;
  gap: 3em;
}

#footerWrapper #addressContactWrapper #contact p {
  height: 100%;
  width: 100%;
  display: flex;
}

#footerWrapper #addressContactWrapper #contact #instagram:hover {
  cursor: pointer;
  color: rgb(150, 80, 216);
}