/*  
selectors for html items;
#  -> id
.  -> class
name -> html element ie. "body"
*/

@font-face {
  font-family: 'hulbert_hopper_displayregular';
  src: url('hulberthopperdisplay-mv0zp-webfont.woff2') format('woff2'),
       url('hulberthopperdisplay-mv0zp-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

body {
    font-family: "Lato", Helvetica, Arial, sans-serif;
    font-size: 18px;
    background-color: lightblue;
    color: var(--light-grey);
    text-align: center;
  
    }

.logo {
  width: 100%;
  max-width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 10px;
}
    
.logo.left {
  float:left;
}
    
.logo.right {
  float:right;
}

.photo-spero {
  width: 100%;
  max-width: 350px;
  /* height: 350px; */
  object-fit: fill;
  border-radius: 10px;
}

.photo {
  width: 100%;
  max-width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
}



.gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 10px;
}

  
h1 {
  font-family: hulbert_hopper_displayregular;
}
  
.border {
  border: 2px solid black;
  display: inline-block;
  width: auto;
  padding: 7px;
  /*
  box-sizing: border-box;

  margin: 0 auto;
*/
  }

.copyRight {
    
}