body {
  height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  color: white;
  text-align: center;
  object-fit: cover;
  background-attachment: fixed;
  object-position: top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

h1 {
  text-align: center;
  margin: 0;
  padding: 20px;
}
p {
  text-transform: uppercase;
}
header {
  display: flex;
  justify-content: space-evenly;
  height: 150px;
  align-items: center;
  font-size: 25px;
  color: white;
  background-color: rgb(10, 34, 44, 0.53);
  position: fixed;
  width: 100%;
  flex-wrap: wrap;
  z-index: 200;
}
.logo_img {
  width: auto;
  height: auto;
}
/* @media (max-width: 390px) {
  .logo_img {
    width: 200px;
  }
} */
main {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  margin-top: 120px;
  align-items: center;
}

#load-more {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 64px;
  margin-top: 44px;
  flex-direction: column;
}
footer {
  width: 100%;
  height: auto;
  background-color: rgba(0, 0, 0, 0.53);
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin-top: auto;
  flex-direction: column;
  align-items: center;
}
footer img {
  height: 120px;
  width: auto;
}
button {
  cursor: pointer;
}
.button {
  display: inline-block;
  border-radius: 4px;
  background-color: #f4511e;
  border: none;
  color: #ffffff;
  text-align: center;
  padding: 12px;
  width: 200px;
  transition: all 0.5s ease;
  cursor: pointer;
  margin: 5px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: "\00bb";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 120px;
  height: 120px;
  margin: -76px 0 0 -76px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s;
}
@-webkit-keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0;
  }
  to {
    bottom: 0px;
    opacity: 1;
  }
}
@keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}
.search-container {
  display: flex;
  justify-content: center;
  padding: 1rem;
}

.searchbar {
  display: flex;
  align-items: center;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  overflow: hidden;
  background: white;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.searchbar:focus-within {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-color: #94a3b8;
}

#search {
  flex: 1;
  padding: 0.8rem 1.2rem;
  border: none;
  outline: none;
  font-size: 1rem;
  background: transparent;
  width: 130px;
}

#search::placeholder {
  color: #94a3b8;
}

#searchButton {
  background: #3b82f6;
  border: none;
  color: white;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

#searchButton:hover {
  background: #2563eb;
}

#myDiv {
  display: none;
  text-align: center;
}
