/* CSS goes here! */

body {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
}

.main-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
}

/* Mobile screen */
.main-article-index {
  max-width: 1000px;
  min-height: 750px;
  margin: 0 auto;
  padding: 40px;
  /* background-image: url("../images/mountain-mobile.jpg");
  background-repeat: no-repeat;
  background-size: cover; */
}

/* Computer screen */
@media only screen and (min-width: 450px) {
  .main-article-index {
    max-width: 900px;
    min-height: 500px;
    margin: 0 auto;
    padding: 40px;
    /* background-image: url("../images/mountain.jpg");
    background-repeat: no-repeat; */
  }
}

header {
  text-align: center;
}

.no-hover:hover {
  opacity: 1;
}

ul.menu {
  list-style: none;
  text-align: center;
}

.menu .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .menu a {
    display: none;
  }
  .menu a.icon {
    float: right;
    display: block;
    font-size: 30px;
  }
}

@media screen and (max-width: 600px) {
  .menu.responsive {position: relative;}
  .menu.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
    transform: rotate(-90deg);
    transition: ease-in 0.3s;
  }

  .menu.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

li.menu-item {
  display: inline-block;
  padding-right: 10px;
}

.background-image {
  height: 350px;
  overflow: hidden;
}

.background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: white;
  padding: 10px;
}

figure {
  width: 180px;
  margin-right: 10px;
  margin-bottom: auto;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

figure img {
  width: 180px;
  height: 150px;
  object-fit: cover;
}

figcaption {
  text-align: center;
  width: 180px;
  color: black;
  height: 35px;
}

a {
  text-decoration: none;
  color: black;
}

a:hover {
  opacity: 0.6;
}

iframe {
  padding: 10px;
}