
/* Navbar and footer CSS */

@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

.nav-link {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
}

.nav-link:hover {
  font-weight: 1000;
}

.accent {
  background-color: rgb(22, 22, 22);
}

.font {
  font-family: 'Poppins', sans-serif;
}

.underlined {
  border-bottom: 3px solid #FAFAFF;
}

/* css for other stuff */

* {
  box-sizing: border-box
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Dosis', sans-serif;
  line-height: 1.6;
  color: #666;
}

body {
  background-color:rgb(45, 45, 45);
}

#root {
  max-width: 1200px;
  margin: 0 auto;
}

h1 {
  text-align: center;
  padding: 0.5rem 1.5rem;
  background-image: linear-gradient(120deg, #fbc2eb 0%, #a6c1ee 100%);
  margin: 0 0 2rem 0;
  font-size: 1.5rem;
  color: black;
  height: 10rem;
}

img {
  display: block;
  /* margin: 1rem auto; */
  max-width: 100%;
}

p {
  padding: 0 2.5rem 2.5rem;
  margin: 0;
  color: white;
  background-color: #000000;
  background-size: cover;
}

.container {
  display: flex;
  flex-wrap: wrap;
}

.card {
  margin: 1rem;
  background: black !important;
  box-shadow: 2px 4px 25px rgba(0, 0, 0, .1);
  border-radius: 12px;
  overflow: hidden;
  transition: all .2s linear;
  outline: 2px white;
  max-width:350px;
  max-height:470px;
}

.card1 {
  margin: 1rem;
  background: black !important;
  box-shadow: 2px 4px 25px rgba(0, 0, 0, .1);
  border-radius: 12px;
  border-color: blue !important;
  border-width: 1rem;
  overflow: hidden;
  transition: all .2s linear;
  outline: 2px white;

}

.card2 {
  margin: 1rem;
  background: black !important;
  box-shadow: 2px 4px 25px rgba(0, 0, 0, .1);
  border-radius: 12px;
  overflow: hidden;
  transition: all .2s linear;
  outline: 2px white;
  max-width:500px;
  max-height:500px
}

.card:hover {
  box-shadow: 2px 8px 45px rgba(0, 0, 0, 0);
  transform: translate3D(0, -7px, 0);
}

@media screen and (min-width: 600px) {
  .card {
    flex: 1 1 calc(50% - 2rem);
  }
}

@media screen and (min-width: 900px) {
  .card {
    flex: 1 1 calc(33% - 2rem);
  }
}

.card:nth-child(2n) h1 {
  background-image: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
}

.card:nth-child(4n) h1 {
  background-image: linear-gradient(120deg, #ff9a9e 0%, #fecfef 100%);
}

.card:nth-child(5n) h1 {
  background-image: linear-gradient(120deg, #ffc3a0 0%, #ffafbd 100%);
}

#enter {
  float: right;
}

#enter {
  float: right;
}

input {
  float: right;
}

body {
  background-image: url('https://wallpaperaccess.com/full/486696.png'); 
}

.secondary{
  background-color: #000000
}

.LogoImg {
  width: 240px;
  height: 150px;
}

a{
  text-align: center;
}

h2{
  text-align: center;
  padding: 10px;
  background-color: black;
  color: white;
}

h3{
  text-align: center;
  background-color: black;
  background-size: cover;
  color: white;
}

.a{
  color:blue;
}

/* Add styles for remove/undo button */
.remove-button {
  background-color: #ff6347;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 10px;
}

.remove-button:hover {
  background-color: #d9534f;
}

#budgetSection {
  background-color: black;
  padding: 10px;
  border: 1px solid black;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color:white;
}


#searchInput {
  max-width: 300px; /* Adjust as needed */
}

#searchButton {
  margin-top: 10px;
}

#shoppingCart {
  background-color: black;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  color: white;
}

.basket-item {
  margin: 0.5rem; /* Add margin to create space between items */
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f0f0f0;
  max-width: 200px; /* Adjust as needed */
  color:black;
  
}

#buying .card {
  width: calc(30% - 20px); /* Adjust the width as per your preference */
  margin-bottom: 20px;
}

#filterOptions {
  padding: 10px;
  color:white;
}