/* Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Papyrus, fantasy;
  font-size: 16px;
  background-color: #3A181A;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em;
  background-color: #65909A;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 50px;
  height: 50px;
}

.logo h1 {
  font-size: 1.5em;
  font-weight: bold;
  margin-left: 0.5em;
  color: white;
}

nav ul {
  display: flex;
  list-style: none;
}

nav li:not(:last-child) {
  margin-right: 1em;
}

nav a {
  color: black;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Main */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2em;
}

.banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2em;
  background-color: black;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2em;
}

.banner h2 {
  font-size: 2em;
  margin-bottom: 1em;
  color: #65909A;
}

.banner p {
  font-size: 1.2em;
  margin-bottom: 2em;
}

.cta {
  background-color: #65909A;
  color: black;
  text-decoration: none;
  padding: 1em 2em;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.2s ease-in-out;
}

.cta:hover {
  background-color: #76DAFF;
}

.features {
  background-color: black;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 2em;
  margin-bottom: 2em;
}

.features h2 {
  font-size: 2em;
  margin-bottom: 1em;
  color: #65909A;
}

.features ul {
  font-size: 1.2em;
  margin-left: 2em;
}

.features li {
  margin-bottom: 1em;
  display: flex;
  align-items: center;
}

.features li i {
  font-size: 1.5em;
  margin-right: 1em;
  color: #65909A;
}

.slideshow {
  margin-bottom: 2em;
}

.slide-container img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.testimonials {
  background-color: black;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

#happiness-bar {
  width: 100%;
  height: 20px;
  background-color: grey;
  margin-bottom: 20px;
}

#happiness-progress {
  height: 100%;
  background-color: green;
  width: 0%;
}