/* ========================================
   MAIN PAGE SETTINGS
======================================== */

body {
  background-color: #262626;           /* # Change this to change the background color */
  color: #e4e4e4;                      /* # Change this to change the main text color */
  max-width: 60em;                     /* # Change this number to make the page wider or narrower */
  font-family: "Jost", system-ui, sans-serif;  /* # Change "Jost" to use a different font */
  margin: auto;
  line-height: 1.55;                   /* # Change this to make text more/less spaced out */
}

/* ========================================
   HEADER (the title at the top)
======================================== */

.header {
  padding-top: 3em;                    /* # Change this to move the title higher or lower */
  padding-left: 0.5em;
}

/* ========================================
   LAYOUT
======================================== */

.main {
  display: flex;
  flex-direction: column;
  gap: 20px;                           /* # Change this to add more/less space between sections */
  justify-content: center;
  align-items: flex-start;
}

main {
  padding: 0 10px;
  max-width: 100%;
  font-size: 15px;                     /* # Change this to make all body text bigger or smaller */
}

/* ========================================
   NAVIGATION BAR
======================================== */

.navbar {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  width: auto;
}

.navbar a {
  padding: 6px 16px;                   /* # Change these numbers to make nav buttons bigger/smaller */
  text-decoration: none;
  font-size: 15px;
  color: #008aff;                      /* # Change this to change the normal link color in the navbar */
  display: block;
}

.navbar a:hover {
  color: #0085A1;                      /* # Change this to choose another color on Hover (navbar) */
}

/* ========================================
   ALL OTHER LINKS
======================================== */

a {
  color: #008aff;                      /* # Change this to change the normal link color */
}

a:hover {
  color: #0085A1;                      /* # Change this to choose another color on Hover */
}

a:visited {
  color: #6a5acd;                      /* # Change this to choose another color after the link has been clicked */
}

/* ========================================
   OTHER ELEMENTS
======================================== */

hr {
  border: none;
  border-top: 1px solid #555;          /* # Change #555 to change the color of the line under the title */
}

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

/* Makes images smaller on bigger screens */
@media (min-width: 600px) {
  img {
    max-width: 50%;                    /* # Change this percentage to control image size on desktop */
  }
}