/* Global Styles for Gallery Page: overrides index.css */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

/* Main Styles */
.gallery-content {
  display: block;
  padding: 30px 50px 70px 50px;
  position: relative;
  text-align: left;
  width: 100%;

  background: url("../images/backgrounds/bg_main_v1-opacity-50.png");
  background-position: center;
  background-size: contain;
}

#installation-main,
#mixed-media-main {
  height: unset;
}

.gallery-items {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Gallery Content */
.gallery-links {
  display: flex;
  flex-direction: column;
  padding: 50px 0 100px 15px;
}

.gallery-links a {
  color: rgb(27, 14, 87);
  font-family: 'Great Vibes';
  font-size: 26px;
  font-weight: 500;
  margin: 0 36px 5px 0;
  padding: 0 0 0 10px;
  text-align: left;
  text-decoration: underline;
}

.gallery-links a:hover {
  color: #3C688F;
  text-decoration-color: #3C688F;
}

/* Text Styles */
.gallery-title {
  color: rgb(27, 14, 87);
  font-family: 'Great Vibes';
  font-size: 26px;
  font-weight: 500;
  margin: 0 36px 0 0;
  padding: 0 0 0 10px;
  text-align: left;
}

.gallery-description {
  color: rgb(27, 14, 87);
  font-family: 'Great Vibes';
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 50px 30px;
  text-align: left;
}

.item {
  background-color: #FFF;
  border: 1px solid #DDD;
  box-shadow: 5px 5px 4px #CCC;
  margin: 10px;
  width: fit-content;
}

.item-text {
  color: #AAA;
  font-size: 0.8rem;
  margin: 5px 0;
  padding: 10px;
}

.item-image {
  height: auto;
  max-width: 1000px;
  width: 100%;
}

/* Video Art Spacing */
.gallery-installation .item {
  margin: 10px 0 40px;
}

/* Poetry Background Colour */
.poetry-container {
  background-color: #FFF;
}

/* Media Queries: Responsive Styles */
@media screen and (min-width: 450px) {
  .item iframe {
    height: auto;
    width: 100%;
  }
}

@media screen and (min-width: 600px) {
  .item iframe {
    height: 315px;
    width: 550px;
  }
}
