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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Arial", sans-serif;
}

.Fetchu {
  width: 100%;
  min-height: 600px;
  background-image: url("https://pbs.twimg.com/media/GEi_k79XwAAKghU?format=jpg&name=large");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-direction: column;
  display: grid;
  color: white;
}

.nav {
  width: 100%;
  max-height: 50px;
  padding: 10px 0;
  border-radius: 50px;
  background-color: rgba(255, 146, 251, 0.4);
  text-align: center;
  display: flex;
  justify-content: space-around;
}

.nav ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  width: 80%;
}

li {
  font-weight: bold;
}

a {
  text-decoration: none;
  color: white;
}

.Main-title {
  font-family: "Poppins", sans-serif;
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.container {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  max-height: 100vh;
  overflow-y: auto;
}

.row {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
  min-width: 98vw;
}

.card {
  margin: 10px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: box-shadow 0.3s ease-in-out;
  overflow: hidden;
  width: calc(33% - 10px);
  max-width: 300px;
}

.card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card-content {
  position: relative;
  align-items: center;
}

.card img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}

.card-content {
  font-family: "Poppins", sans-serif;
  font-size: small;
  color: rgba(230, 144, 240);
  text-shadow: 0px 0.1px black;
}

.swiper-pagination-bullet-active {
  background-color: white !important;
}

.swiper-pagination-bullet {
  --swiper-pagination-bullet-size: 5px;
}

::-webkit-scrollbar {
  width: 5px;
  height: 4px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(230, 144, 240, 0.5);
  border-radius: 4px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(230, 144, 240, 0.65);
}
