* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'SF Pro Text',-apple-system,BlinkMacSystemFont;
    background-color: #70543e;
}

/* everything on page */
.container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 48px;
    margin: 2em 5em;
    justify-content: center;
    align-items: center;
    margin: 40px 20px 40px 20px;
}

body {
    margin: 8px
}

header {
    flex: 1;
    text-align: center;
    color: #e5d3b3;
    line-height: 1.7;
    letter-spacing: 1.2px;
}


a:link {
    color: #e5d3b3;
}
  
a:visited {
    color: #e5d3b3;
}

a:hover {
    color: #e5d3b3;
}

a:active {
    color: #e5d3b3;
}

hr {
    border-color: #e5d3b3;
}

/* images themselves */
#image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
}

img {
    align-self: center;
    max-width: 300px;
    max-height: 340px;
    height: auto;
}

.gallery-image {
    cursor: pointer;
}

@media (min-width: 1024px) {
    #main-image {
        max-width: 600px;
        max-height: 540px;
        object-fit: contain;
    }
}

@media only screen and (max-width: 800px) {
    .photos {
      gap: 12px;
      margin: 0;
      padding: 0;
    }

    .photos > * {
      flex: 1 0 40%;
    }
}
