* {
  margin: 0;
  padding: 0;
  border-radius: 0%;
  font-family: Arial, Helvetica, sans-serif;
}

/* Style for the header */
nav {
  background-color: #333;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__title {
  font-size: 24px;
  font-weight: bold;
  color: #aeeb5f;
}
.nav__search input {
  padding: 5px;
  border: none;
  border-radius: 4px;
}
.nav__search button {
  padding: 5px 10px;
  border: none;
  background-color: #555;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  transition: 1000ms;
}
.nav__search button:hover {
  background-color: #aeeb5f;
}

/* Style for the main content */
.main__search {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40vh;
  background-color: #f4f4f4;
  background-image: url("assets/background.jpeg");
  background-size: cover;
  background-position: center;
}

.search__input {
  background-color: #aeeb5f;
  padding: 15px;
  font-size: 18px;
  border: 2px solid #64cb47;
  border-radius: 20px;
  width: 300px;
}

.anime__cards{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.anime__card {
    /* each card should light up when i hover over it */
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border:  1px solid #ddd;
    border-radius: 8px;
    padding: 16px;
    margin: 16px;
    width: 250px;
    transition: 0.3s;
}

.anime__card:hover {
    background-color: #c0f7b1;
    box-shadow: 0 4px 8px rgba(96, 60, 60, 0.2);
}

.anime__img{
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 12px;
}
h3{
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
}
p{
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}