body {
  background-color: #1a1a1a;
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background-color: #222;
}

body::-webkit-scrollbar-thumb {
  background-color: #444;
}
  
body::-webkit-scrollbar-thumb:hover {
  background-color: #666;
}

header {
  background-color: #1a1a1a;
  list-style: none;
  padding: 20px;
  font-size: 24px;
  position: fixed;
  width: 100%;
  z-index: 1;
  top: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header li {
  display: inline-block;
  float: right;
  padding: 0 24px;
  transform: translatex(-20px);
}

header a {
  color: #fff;
  text-decoration: none;
}

header a:hover {
  color: #7d7d7d;
}

main {
  background-image: url('img/header.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  text-align: center;
  padding: 140px 0 160px 0;
  margin-top: 75px;
}

main h1 {
  color: #fff;
  font-size: 48px;
  letter-spacing: 2px;
}

main h2{
  transform: translateY(-25px);
}

main button {
  color: #fff;
  padding: 10px 42px;
  background-color: transparent;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

main button:hover {
  background-color: rgba(240, 240, 240, 0.1);
}

.link-galleries {
  text-align: center;
  margin: 20px;
}

.link-galleries li {
  display: inline-block;
}

.link-galleries a {
  color: #fff;
  text-decoration-color: lightskyblue;
}

.content {
  text-align: center;
}

.content h1 {
  color: lightskyblue;
  margin: 20px 0 0 0;
}

.content h2 {
  color: #fff;
  margin: 4px 0 0 0;
  letter-spacing: 2px;
}

.content p {
  color: #aaa;
  margin: 0 0 20px 0;
}

.content img {
  width: 40%;
  height: auto;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8);
  border-radius: 5px;
}

.content button {
  color: #fff;
  padding: 10px 42px;
  background-color: transparent;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.content button:hover {
  background-color: rgba(240, 240, 240, 0.1);
}

.links {
  background-color: #222;
  list-style: none;
  padding: 20px;
  text-align: center;
}

.links li {
  padding: 0 10px 0 10px;
  display: inline-block;
}

.links a {
  text-decoration: none;
  color: lightskyblue;
}

.links a:hover {
  color: #1658ff;
}

footer {
  background-color: #222;
  color: #fff;
  padding: 20px;
  text-align: center;
  outline: 1px solid #333;
}

@media (max-width: 720px) {
  header {
    text-align: center;
    padding: 20px 0;
  }
  
  header li {
    display: none;
  }

  main {
    padding: 50px 0 80px 0;
  }

  main h1 {
    font-size: 24px;
  }

  main h2 {
    font-size: 14px;
    transform: translateY(-5px);
  }

  .link-galleries a {
    font-size: 14px;
  }
  
  .content {
    margin: 20px;
  }

  .content img{
    width: 90%;
  }

  footer {
    font-size: 10px;
  }
}

/* Creations */

.search-container {
    text-align: center;
    margin-top: 90px;
    padding: 10px;
    border-radius: 5px;
}

#searchInput {
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    width: 240px;
    background-color: #222;
    color: #f9f9f9;
}

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

.box {
  background-color: #222;
  width: 300px;
  border-radius: 5px;
  padding: 20px;
  margin: 10px;
  text-align: center;
}

.box img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

.box h1 {
  font-size: 24px;
  color: lightskyblue;
  letter-spacing: 2px;
  margin: 0;
}

.box p {
  color: #aaa;
  margin: 0 0 12px 0;
}

.box .lemo-button {
  display: block;
  padding: 10px;
  background-color: transparent;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 5px;
  letter-spacing: 2px;
  cursor: pointer;
}

.box .lemo-button:hover {
  background-color: rgba(240, 240, 240, 0.1);
}

/* Galleries */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 10px;
  padding: 10px;
  margin-top: 75px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
