.parallax {
    display: grid;
    place-items: center;
    min-height: 400px;
    background-image: url("../images/copplestone_hills.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    background-attachment: fixed;
}

.parallax_info_container {
    color: white;
    background-color: rgba(152, 152, 152, 0.5);
    padding: 25px;
    text-align: center;
}

.parallax_info_container li {
    list-style-type: none;
}

.parallax_info_container h2 {
    padding-bottom: 25px;
    font-size: xx-large;
}

.parallax_info_container ul {
    padding-bottom: 25px;
}

.parallax_info_container a {
    text-decoration: none;
    color: rgb(231, 190, 112);
}

@media only screen and (max-device-width: 1366px) {
    .parallax {
      background-attachment: scroll;
    }
  }