html, body {
  height: 100%; /* Ensures the body can stretch to full height */
  margin: 0;
}

body {
  display: flex; /* Activate flexbox on the body */
  flex-direction: column; /* Stack children vertically */
}

.pane {
  min-height: 100vh; /* Ensures the container spans the full viewport height */
    border-left: #8dcfcb solid 100px;
  border-right: #8dcfcb solid 100px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background-color: #8dcfcb;
  border-top: 10px solid #8dcfcb;
  border-bottom: 10px solid #8dcfcb;
}

/* Logo controls height of navbar */
.logo img {
  height: 160px;
  /* change this and layout adapts */
  width: auto;
  display: block;
}

/* Nav expands automatically */
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  padding-right: 20px;
  flex-wrap: wrap;
  /* allows wrapping if logo gets large */
}

/* Responsive text scaling */
.nav-links a {
  text-decoration: none;
  font-size: 40px;
  font-family: 'Work Sans', sans-serif;
  color: rgb(255, 255, 255);
}

.container {
  display: grid;
  justify-content: center;
  grid-template-columns: auto auto auto;
  padding: 10px;
}

.container-cell {
  display: flex;
}

.container-cell div {
  font-family: 'Work Sans', sans-serif;
  font-size: 20px;
}

.container-cell div h1 {
  font-family: 'Work Sans', sans-serif;
  font-size: 40px;
}
.container div {
  font-family: 'Work Sans', sans-serif;
  font-size: 30px;
}

.container div h1 {
  font-family: 'Work Sans', sans-serif;
  font-size: 40px;
}

.container div img {
  text-align: center;
}


.footer {
  background-color: #8dcfcb;
  border-top: 10px solid #8dcfcb;
  border-bottom: 10px solid #8dcfcb;
  height: 40px;
  display: flex;              /* make footer flex */
  align-items: center;        /* vertical center */
  justify-content: center;    /* horizontal center */
}

/* Nav expands automatically */
.footer-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  padding-right: 20px;
  list-style-type: none;
}

.footer-links a {
  text-decoration: none;
  font-size: 15px;
  font-family: 'Work Sans', sans-serif;
  color: rgb(255, 255, 255);
}