body {
  font-family: sans-serif;
  margin: 0;
  background-image: url(/background.jpg);
  background-repeat: repeat;
  background-size: 5%;
}
.header {
  background: #94ab3a;
  color: #fff;
  padding: 20px;
  position: relative;
}
.header h1 {
  margin: 0;
  font-size: 24px;
  display: inline-block;
}
.banner {
  width: 100%;
  text-align: center;
  margin: 0px 0;
}

.banner img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
}
.main-section {
  background: #fff;
  text-align: center;
  padding: 20px;
}
.main-section img {
  width: 100px;
}
.star-rating {
  color: gold;
  font-size: 16px;
}
.featured {
  background: rgb(14, 13, 13);
  padding: 1px;
}
.app-list {
  overflow: hidden;
  margin: 0 0px;
}
.app {
  float: left;
  width: calc(50% - 10px);
  margin: 0 5px 10px;
  display: flex;
  align-items: center;
  padding: 0px;
  background-image: url(app-background.png);
  background-size: cover;
  color: #e0e0e0;
  cursor: pointer;
}
.add {
  float: left;
  width: calc(50% - 10px);
  margin: 0 5px 10px;
  display: flex;
  align-items: center;
  padding: 0px;
  color: #e0e0e0;
  cursor: pointer;
}
.app img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}
.app-infa {
  color: #fff;
  flex-grow: 1;
}
.app-title {
  color: #fff;
  font-weight: bold;
}
.nav {
  display: flex;
  justify-content: space-around;
  background: #94ab3a;
  padding: 10px 0;
}
.nav div {
  text-align: center;
  color: #000;
  font-weight: bold;
}
.center {
  text-align: center;
  display: block;
  margin: 0 auto;
}
.center img {
  display: block;
  margin: 0 auto;
}
.footer {
  color: white;
  text-align: center;
  padding: 10px 0;
  position: relative;
  bottom: 0;
  width: 100%;
}
.topnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: url(/background.jpg);
  background-repeat: repeat;
  background-size: 5%;
}
.logo img {
  height: 40px;
}
.search-container {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.search-container input[type="text"] {
  font-size: 17px;
  border: none;
}

  @media (min-width: 360px) {
    header {
        padding: 5px 0;
    }

    .container {
        padding: 0 10px;
    }

    h1 {
        font-size: 24px;
    }

    p {
        font-size: 16px;
    }
}