* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  overflow-x: hidden;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #b5c38f;
  z-index: -1;
}

.content {
  padding: 10px;
  margin: auto;
  margin-top: 20px;
  width: 800px;
  background-color: #6f826a;
  z-index: 1;
  overflow: hidden;
}

.cover {
  width: 780px;
  height: auto;
  margin-bottom: 20px;
  filter: hue-rotate(51deg) saturate(33%) brightness(100%);
  transition: filter 3s ease;
}

.cover:hover {
  filter: none;
}

.container {
  display: flex;
  gap: 10px;
}

.main-content {
  width: 600px;
  background-color: #bbd8a3;
  font-family: "Manjari", sans-serif;
  color: #18230f;
}

nav {
  flex: 1;
}

nav h2 {
  margin: 0;
  font-family: "Kufam", sans-serif;
  font-size: 20px;
  padding: 10px;
  text-align: center;
  color: #bbd8a3;
  background-color: #282e25;
}

nav .items {
  display: grid;
  background-color: #bbd8a3;
  gap: 3px;
}

nav a {
  text-decoration: none;
  font-family: "Manjari", sans-serif;
  color: #18230f;
  font-size: 20px;
  padding: 5px;
  padding-top: 10px;
}

nav a::before {
  content: "★ ";
  font-size: 12px;
  margin-right: 2px;
  position: relative;
  bottom: 3px;
}

nav a:hover {
  background-color: #99b185;
  color: #350202;
}

.welcome .text {
  font-size: 20px;
  padding: 20px;
  text-align: justify;
}

.welcome h1 {
  color: #bbd8a3;
  background-color: #282e25;
  font-family: "Oleo Script", cursive;
  font-size: 40px;
  text-align: center;
  margin: auto;
  padding: 5px;
}
