body {
    background-color: #36a7c4;
    margin: 0;
    padding: 50;
    max-width: 100%;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.content {
    padding: 40px 20px;
    text-align: center;
}

h1, h2, h3, h4, h5 {
    color: black;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: normal;
    line-height: 1.5;
    margin: 0.5em 0;
    text-align: center;
}

h3 {
    font-size: 130%;
    letter-spacing: 0.05em;
    word-spacing: 0.2em;
}

p {
    font-size: 130%;
    line-height: 1.6;
    margin: 0.5em auto;
    padding: 0 5%;
    text-align: center;
    max-width: 700px;
}

a:link, a:visited {
    color: black;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 90%;
    font-weight: normal;
    text-decoration: none;
}

a:hover {
    color: #34136c;
}

hr {
    border: none;
    border-top: 1px solid black;
    max-width: 700px;
    margin: 2em auto;
}

/* Individual image containers */
.image-container {
    display: flex;            /* Center images horizontally */
    justify-content: center;
    text-align: center;
    margin-right: 10px;
    vertical-align: top;
  }
  
  /* Image styling */
  .image-container img {
    width: auto;
    height: auto;
    max-width: 100%;
    border: 5px solid black;

    &:hover {
        border-color: #34136c;
    }
}
  
  /* Responsive adjustments */
  @media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
        gap: 10px;
    }
  
    .image-container img {
        max-width: 100%;
    }
  }

  /* Dark mode toggle button */
#darkModeToggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #36a7c4;
    color: black;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 90%;
    cursor: pointer;
  }
  
  #darkModeToggle:hover {
    background-color: #34136c;
    color: white;
  }

/* Dark Mode — index page */

body.dark-mode {
  background-color: #123740;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5 {
  color: #0fa6a8;
}

body.dark-mode p {
  color: #0fa6a8;
}

body.dark-mode a:link,
body.dark-mode a:visited {
  color: #0fa6a8;
}

body.dark-mode a:hover {
  color: #36a7c4;
}

body.dark-mode img {
  border-color: #0fa6a8;
}

body.dark-mode img:hover {
  border-color: #0d6b80;
}

body.dark-mode hr {
  border-top-color: #0fa6a8;
}

body.dark-mode #darkModeToggle {
  background-color: #0fa6a8;
  color: #123740;
}

body.dark-mode #darkModeToggle:hover {
  background-color: #36a7c4;
  color: #123740;
}

