 /* Font styling */

  .gallery-title {
    font-family: -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
	color: rgb(191, 32, 37);
	margin: 2.5rem 0 2rem 0;
	line-height: 1.1;
  }
    .gallery-menu {
    font-family: -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
  }
    .gallery-text {
    font-family: -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.14em;
    white-space: normal;
	margin: 0 auto; 
	max-width: 400px; 
  }
 
	/* for mobile */
	
@media (max-width: 768px) {

  .gallery-title {
    font-size: 28px;
    letter-spacing: 0.18em;
    white-space: normal;
  }

  .gallery-menu {
    font-size: 14px;
    letter-spacing: 0.12em;
    white-space: normal;
  }

  .gallery-text {
    font-size: 15px;
    letter-spacing: 0.08em;
    white-space: normal;
    line-height: 1.6;
  }
}
 
  /* Links colors */
  
  a,
  a:visited {
    color: black;        
    text-decoration: none;
  }

  a:hover,
  a:focus {
    text-decoration: underline;
  }
  
  /* page centering */
  
  .page {
  text-align: center;
  }
  
  /* Make all images scale responsively */
.page img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto; /* important, center images */
}
