main {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

body {
  font-family: "Open Sans", sans-serif;
  margin: 40px;
}

header {
  display: flex;
  justify-content: space-between;  /* title left, nav right */
  align-items: center;             /* vertical alignment */
}

header h1 {
  margin: 0;                       /* removes default top/bottom margin */
}

header h1 a {
  text-decoration: none;           /* removes underline */
  color: black;                    /* makes links black */
  font-weight: bold;
}

nav {
  display: flex;
  gap: 20px;
  align-items: center;             /* keeps links aligned with title */
}

nav a {
  text-decoration: none;           /* removes underline */
  color: black;                    /* makes links black */
  font-weight: bold;
}

nav a:hover {
  color: gray;
}

.wrap {
  position: relative;
  text-align: center;
}

.wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 80px;
  margin: 0;
  text-align: center;
}

h2 {
  color: white;      /* makes text white */
  font-size: 48px;   /* makes text larger */
  margin-bottom: 20px;
}

img {
  max-width: 100%;
  height: auto;
}

h1 {
  margin-top: 50px;
  text-align: center;
}

p {
  margin-bottom: 1.6em;
  line-height: 1.4;
  text-align: center;
}
