@import url('https://fonts.googleapis.com/css2?family=Tektur&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

body {
  background-color: #1c1c1e;
  color: #fefefe;
  margin: 0;
  padding: 0;
  min-height: 500vh;
}

h1 {
  color: #5fa9ee;
  font-size: 48px;
  text-align: center;
  font-family: 'Tektur', cursive;
}

h2 {
  color: #5fa9ee;
  font-size: 20px;
  text-align: center;
  font-family: 'Tektur', cursive;
}

h3 {
  color: #5fa9ee;
  font-size: 18px;
  font-family: 'Pacifico', cursive;
  text-align: center;
}

.s {
  height: 30px;
  width: 100%;
  background-color: #0B8BD0;
  text-align: center;
  line-height: 30px;
  color: white;
}

.contitem {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 20px auto;
  max-width: 100%;
}

.item {
  width: 180px;
  text-align: center;
}

.item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

footer {
  text-align: center;
  margin-top: 20px;
}


@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  .navbar-item img {
    height: 30px;
    width: 25px;
  }

  .item {
    width: 150px;
  }

  .s {
    font-size: 14px;
  }

  footer {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  .item {
    width: 120px;
  }

  h3 {
    font-size: 16px;
  }
}
