
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

header {
  background-color: orange;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

header h1 {
  margin: 0;
  color: #fff;
}

.btn-navbar {
  cursor: pointer;
}

.icon-bar {
  display: block;
  width: 30px;
  height: 4px;
  background-color: #fff;
  margin: 6px;
}

aside {
  display: block;
}

nav ul {
  padding: 0;
  margin: 0;
  background-color: orange;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

li {
  list-style: none;
  width: 150px;
  height: 60px;
  background-color: rgb(236, 236, 236);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

ul p {
  margin: 0;
  color: black;
  cursor: pointer;
}

div {
  display: flex;
  justify-content: center;
}

main {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}

p {
  margin-left: 60px;
  margin-right: 60px;
  font-weight: bold;
  font-size: 30px;
}

h2 {
  width: 100%;
  text-align: center;
  color: black;
}

img {
  max-width: 100%;
  height: auto;
  margin-left: 20px;
}

footer {
  background-color: lightgreen;
  text-align: center;
  padding-bottom: 50px;
  padding-top: 50px;
}

@media (max-width: 900px) {
  p {
    font-size: 12px;
  }



}