h1 {
  color: olive;
  font-size: 40px;
  letter-spacing: 3px;
  margin-left: 20px;
}

h2 {
  color: #4d4d00;
  letter-spacing: 1px;
  word-break: keep-all;
}

@media (max-width : 760px) {
  h1 {
    text-align: center;
  }
}

body {
  background-color: beige;
}

main {
  color: black;
  font-family: "Inclusive Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: flex;
  justify-content: flex-start;
}

@media (max-width : 760px) {
  main {
    flex-direction: column;
    text-align: center;
  }
}

menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 150px;
}

menu a {
  text-decoration: none;   
  font-size: large;
  letter-spacing: 3px;
  color: #ff80bf;
}

menu a:hover {
  color: #ff80bf;
  font-weight: 600;
}

menu mark {
  background-color: #ffff4d;
  font-size: large;
  letter-spacing: 3px;
  font-weight: 500;
}

@media (max-width : 760px) {
  menu {
    width: 100%;
    display: inline-block;
    padding-left: 0px;
  }
}

menu li {
  list-style-type: none;
  margin-bottom: 15px;
}

.gallery img {
  width: 100%; 
  margin-bottom: 30px;
}

.gallery {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 700px;
  margin-left: 20px;
}

@media (max-width : 760px) {
  .gallery {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}


