/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
/* CTRL + F5 does a hard reset which will reload your website correctly*/

/*COLOURS
/*ink-black: #0c1618;*/
/*pine-teal: #004643;*/
/*cornsilk: #faf4d3;*/
/*metallic-gold: #d1ac00;*/
/*peach-glow: #f6be9a;*/
/*COLOURS*/

.sekuya-regular { /*Font for main title*/
  font-family: "Sekuya", system-ui;
  font-weight: 400;
  font-style: normal;
}

header {
  display: flex;
  justify-content: center;
  background-color: #004643;
  max-width: 1264px;
  padding: 1px;
  border: 2px solid #d1ac00;
  }

header h1 {
  font-family: "Sekuya", system-ui;
  color: #faf4d3;
  text-shadow: 2px 2px 5px #d1ac00;
}

/*NAVIGATION BAR SECTION*/
.navbar {
  display: flex;
  position: sticky;
  align-items: center;
  justify-content: center;
  background-color: #0c1618;
  padding: 5px;
  }
#navbarList {
  display: flex;
  list-style: none;
  padding: 0 10px 0 10px;
  }
@media screen and (min-width: 601px) { /*IF screen size is big*/
  #navbarList li a {
    text-decoration: none;
    color: white;
    padding: 22px;
    font-size: 16px;
    }
}
@media screen and (max-width: 600px) { /*IF screen size is small*/
  #navbarList li a {
    text-decoration: none;
    color: white;
    padding: 22px;
    font-size: 11px;
    }
}
#navbarList li a:hover {
  background-color: white;
  color: black;
  border: 2px solid rgb(244, 212, 36);
  cursor:pointer;
  }
/*END OF NBR SECTION*/

body {
  overflow-y: scroll;
  overflow-x: hidden;
  color: black;
  font-family: "Times New Roman", Times, serif;
  background: #f6be9a;
}
  /*CONTENT BOX SETTINGS*/
.contentBox{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-content: center;
  background: #faf4d3;
  max-width: 900px;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 50px;
  padding: 40px;
  padding-top: 10px;
  border: 2px solid #333;
  }
  
  .contentBox h2{
    font-size: 40px;
    }