* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

body {
    background-color: black;
    color: white;
    font-family: verdana;
    text-align: center;
    line-height: 1.5;
    margin: auto;
    padding: 1em;
  }

  .photo-row {
    display: flex;
    justify-content: center;
    gap: 20px; /* space between image */
    margin: 1em 0;
  }

  .photo-row img {
    width: 45%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
  }


  .hometown main {
    width: 120vw;
    max-width: 1150px;
    top: 100px;
  }

  h1 {
    text-align: center;
    margin-top: 24px;
    text-transform: uppercase;
    font-weight: normal;
    color: var(--color-text1);
    letter-spacing: 2vw;
    line-height: 1.3;
    font-size: 10vw;
  }

  .hometown h1 {
    font-size: 6vw;
    margin-bottom: 80px;
    letter-spacing: 1vw;
  }

  h1 span {
    color: #FFF;
    text-shadow: 4px 0px 0p;
  }

  .hometown nav#mainNav {
    margin-top: 160px;
    margin-bottom: 80px;
  }

  nav a {

    margin: 10px;
    padding: 10px;
    background-color: rebeccapurple;
    color: white;
    text-decoration: none;
    display: inline-block;
  }

  nav a:hover {
    background-color: aqua;
    color: black;
  }

  img {
  margin-left: auto;
  margin-right: auto;
  display: block;
  }


  .hometown .content {
    color: purple;
    width: 70ch;
    margin: 0 auto;
  }

  .hometown .content p {
  margin-bottom: 16px;
  line-height: 1.7;
}