<style>
/* Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

/* Root font size */
    html {
      font-size: 16px; /* 1rem = 16px */
      overflow-x: scroll;
      overflow-y: scroll;
    }

    body {
     font-family: Arial, sans-serif;
     line-height: 1.6;
     background: #eaf8ec;
    }

/* Header */
    header {
      background: #eaf8ec;
      color: black;
      padding: 1rem;
      text-align: center;
    }

/* Navigation */
    nav {
      background: #eaf8ec;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
    }

    nav a {
      color: black;
      padding: .15rem;
      text-decoration: none;
    }

/* Main Layout */
.container-main {
    width: 100%;/* Sets the width of the container */
    margin: 0 auto;/* Centers the container horizontally */
    padding: 1rem;/* Adds inner spacing */
    display: flex;
    justify-content: center;
    background: #eaf8ec;
}

.container-spacer {
    width: 100%;/* Sets the width of the container */
    margin: 0 auto;/* Centers the container horizontally */
    padding: 2rem;/*Adds inner spacing */
    background: #eaf8ec;
}

.card {
      width: 100%;
      background: #eaf8ec;
      text-align: center;
      justify-content: center;
      padding: 2rem;
    }

.card-2 {
      width: 50%;
      background: #eaf8ec;
      text-align: left;
    }

.round-image-corners {
  border-radius: 1.25rem;
}

/* Small Screens */
    @media (max-width: 768px) {
     .grid-container {
      grid-template-columns: 1fr;/* 1 column on small screens */
    }
   }

/* Tablet */
    @media (min-width: 769px) {
      .grid-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

/* Desktop */
    @media (min-width: 1024px) {
      .grid-container {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    footer {
      background: #eaf8ec;
      color: black;
      text-align: center;
      padding: 3rem;
    }

/* Style for the popup */
.popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

#popupBtn {
  cursor: pointer;
  background-color: #b2a7e0;
}

/* Popup content */
.popup-content {
    background-color: white;
    margin: 15% auto;
    padding: 1.25rem;
    border: 0.25rem solid #b2a7e0;
    width: 40%;/* Could be adjusted */
    text-align: left;
    max-height: 70vh;/*Limit height */
    overflow-y: auto;/* Enable vertical scrolling */
}

/* Close button */
.close-btn {
    color: #aaa;
    float: right;
    font-size: 1.75rem;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    cursor: pointer;
}

a {
  color: #684ce0;/* Normal state */
  text-decoration: none;
}

a:hover {
  color: #0505a7;/* When mouse is over */
}

a:active {
  color: #036d17;/* While clicking */
}

.large-text {
  font-size: 2rem;
}
</style>