body {
    background-color: #000000;
    margin: 0;
    font-family:fantasy;
    color: #FFFFFF;
}

.site-title {
    color: inherit;
    font-size: 48px;
    margin: 0;

    text-decoration: none;
}

header {
    padding: 10px;
}

.hero {
  min-height: 100vh;
  background-image: url("images/smiling.jpg"); /* your first image */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  position: relative;
  display: flex;
  flex-direction: column;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-content {
  padding: 20px;
}

.section-two {
  min-height: 100vh;
  background-image: url("images/frail.jpg"); /* <-- change to your second image */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  padding: 80px 20px;
  position: relative;
}

.section-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 16px;
}

.section-inner a:link,
.section-inner a:visited {
    color: #FFFFFF;
    text-decoration: underline;

}

.site-title {
    display: block;
    text-align: center;
    font-size: 42px;
    padding: 20px;
    margin: 0;
}

.top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 5px 10px;
    text-align: center;
}

nav a:hover {
    color: #adadad;
}

.nav-left,
.nav-right {
    display: inline-block;
    align-items: center;
    text-align: center;
    gap: 5px;
}

.nav-left a {
    color: inherit;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 999px;
}

.nav-right a {
    color: inherit;
    padding: 8px 16px;
    border-radius: 4px;
    margin-left: auto;
}

.icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Make the nav-right icon images white by default, then grey on hover */
.nav-right .icon-link img {
  filter: brightness(0) invert(1);              /* white */
  transition: filter 160ms ease, transform 160ms ease;
  display: block;
}

.nav-right .icon-link:hover img,
.nav-right .icon-link:focus-visible img {
  filter: brightness(0) invert(0.7);            /* light grey on hover */
  transform: translateY(-1px);
}

.contact {
  min-height: 100vh;
  background-image: url("images/press-1.jpg"); /* your first image */
  background-repeat: no-repeat;
  background-size: cover;

  position: relative;
  display: flex;
  flex-direction: column;
}

.about {
  min-height: 100vh;
  background-image: url("images/forest.png"); /* your first image */
  background-repeat: no-repeat;
  background-size: cover;

  position: relative;
  display: flex;
  flex-direction: column;
}

.about-section {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 22px;
  padding: 40px 300px;
  position: relative;
  border-radius: 16px;
}
.about-section a:link,
.about-section a:visited {
    color: #FFFFFF;
    text-decoration: underline;

}

.frail-info {
  font-family: 'Courier New', Courier, monospace;
  text-align: center;
  font-size: 22px;
  padding: 40px 300px;
  position: relative;
  border-radius: 16px;
}