/* Reset */

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #111;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav a {
  color: #eee;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}
nav a:hover {
  color: #ccc;
}

/* Logo Section */
.logo-banner {
  text-align: center;
  padding: 40px 20px;
  background-color: #000;
}
.logo-banner img {
  height: 100px;
}

/* Sections */
.section {
  padding: 60px 20px;
  text-align: center;
}
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.feature {
  flex: 1 0 300px;
  margin: 20px;
  background-color: #222;
  padding: 20px;
  border-radius: 8px;
}
img.screenshot {
  width: 60%;
  max-width: 600px;
  margin-top: 20px;
}

/* Footer */
footer {
  padding: 40px;
  text-align: center;
  background-color: #111;
  font-size: 14px;
  color: #aaa;
}
