html{background: white; scroll-behavior: smooth; padding: 0px;}
body{
  max-width: 2000px;
  margin: auto;
  background: white; 
  text-align: center; 
  padding: 0; 
  scroll-behavior: smooth; 
  font-family: system-ui; 
  cursor: grab; 
  word-break: normal; 
  box-sizing: border-box;}
nav{
  background: white; //#F5F2E8;
  border-top: 5px solid rgba(250,250,210);
  width: 98%;
  top: 0;
  left: 0;
  margin: auto;
  //margin-bottom: -18px;
  border-radius: 24px;
  position: sticky;
  z-index: 1000;
}
#navmenu{
  display: flex;
  justify-content: space-around;
  gap: 24px;
  background: gold;
  max-width: 1000px;
  margin: auto;
  margin-bottom: 4px;
  border-radius: 8px 8px 0 0;
  box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px, rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
  list-style-type: none;
  font-size: 24px;
  transition: 0.5s;
}
#navmenu li{
  transition: 0.5s;
  cursor: pointer;
  border-right: 0.5px solid #E7E7E7;
  padding-right: 24px;
}
#navmenu li:hover{
  color: grey;
  cursor: pointer;
  transition: 0.5s;
}
#emblem{
	width: 100%; 
	max-width: 145px; 
	margin-top: 10px; 
  margin-bottom: 4px;
	pointer-events: none; 
	border-radius: 100%; 
	box-shadow: rgba(255, 255, 255, 0.4) 5px 5px, rgba(255, 255, 255, 0.3) 10px 10px, rgba(255, 255, 255, 0.2) 15px 15px, rgba(255, 255, 255, 0.1) 20px 20px, rgba(135, 206, 235, 0.05) 25px 25px;
  z-index: 9;
}







#overviewContainer{
  width: 100%;
  height: fit-content;
  top: 0;
  position: fixed;
  background: gold;
  padding: 1.5px;
  z-index: 999999999;
  box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px, rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
  transition: 4.5s;
}

  #overview{
    background: white;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    color: black;
  }
  #overview li{
    list-style-type: none;
  }
  #overview li:hover{
    color: royalblue;
  }
  .displayNone{
    display: none;
  }
  #closeOverviewBtn{
    display: block;
    background: black;
    color: white;
    font-size: 18px;
    margin-bottom: 2px;
  }









a, #navmenu li{
  color: black;
  text-decoration: none;
  transition: 0.5s;
}
a:hover, #navmenu li:hover{
  color: royalblue;
  transition: 0.5s;
}
#mainAsideFlex{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4px;
  padding: 24px;
}

.postDate{
  display: block;
  color: sandybrown;
  margin-bottom: 4px;
}
aside{
  width: 100%;
  max-width: 300px;
  height: fit-content;
  position: sticky;
  top: 0;
  border: 2.5px solid gold;
  border-top: 0;
  border-bottom: 0;
  margin-top: -24px;
  border-radius: 24px;
}
#asideList{
  list-style-type: disc;
  text-align: left;
}
#asideList li{
  margin: 24px;
  margin-left: 0px;
}
#asideList li:hover{
  text-decoration: underline;
  cursor: pointer;
}
main{
  width: 100%;
  max-width: 800px;
  margin: auto;
  background: #F5F2E8;
  padding: 24px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
article{
  text-align: left;
  margin-bottom: 48px;
}
#mainArticleGrid0{
  margin-bottom: 24px;
  display: block;
  gap: 24px;
  border: 5px solid lightgrey;
  padding: 24px;
}
#mainArticleGrid1{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  border: 5px solid lightgrey;
  padding: 24px;
}
#mainArticleGrid2{
  margin-top: 24px;
  display: block;
  gap: 24px;
  border: 5px solid lightgrey;
  padding: 24px;
}
img{
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
-ms-user-select: none;
user-select: none;
}
/*ROTATE EMBLEM START*/
#emblem{
  animation: rotation 42s infinite linear;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
/*ROTATE EMBLEM END*/






.carousel-wrapper {
      display: flex;
      align-items: center;
      position: relative;
      width: 100%;
      margin: auto;
    }

    .arrow {
      background: rgba(255, 255, 255, 0.8);
      border: none;
      padding: 12px;
      cursor: pointer;
      font-size: 18px;
      z-index: 10;
    }

    .arrow:hover {
      background: rgba(0, 0, 0, 0.1);
    }

    .carousel-container {
      flex: 1;
      overflow: hidden;
      border-radius: 10px;
      //box-shadow: 0 1px 2.5px rgba(0,0,0,0.1);
      background: white;
      border-left: 2.5px solid gold; //sandybrown;
      cursor: grab;
    }

    .carousel {
      display: flex;
      transition: transform 1.5s ease-in-out;
    }

    .carousel-item {
      min-width: 100%;
      box-sizing: border-box;
      padding: 20px;
      text-align: left;
    }

    .carousel-item h2 {
      margin: 0 0 10px;
      font-size: 1.5em;
      color: #333;
      //background: white;
    }

    .carousel-item p {
      font-size: 1em;
      color: #666;
      //background: white;
    }


.news-footer {
  border-left: 5px solid gold;
  border-radius: 124px 14px 0 0;
  background: rgba(250,250,210);
  padding: 40px;
  text-align: left;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-section {
  flex: 1 1 220px;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
  //color: #ffffff;
}

.footer-section form input,
.footer-section form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 4px;
}

.footer-section form button {
  background-color: seagreen;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.quick-links ul {
  list-style: none;
  padding: 0;
}

.quick-links ul li a {
  //color: #f1f1f1;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.social-icons a {
  margin-right: 10px;
  font-size: 20px;
  //color: #f1f1f1;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  border-top: 1px solid #444;
  padding-top: 15px;
}
.readMoreBtn{
  font-size: 24px;
  color: grey;
  border-radius: 4px;
  transition: 1s;
}
.readMoreBtn:hover{
  color: black;
  background: gold;
  cursor: pointer;
  transition: 0.5s;
}

/*BACK TO TOP BTN*/
  #backToTop {
  display: block;
    justify-self: right;
    margin: 0px 10px 10px 0px;
    border: 2px solid white;
    font-size: 12px;
    border-radius: 8px;
    background: seagreen;
    transition: 0.5s;
    cursor: pointer;
}
#backToTop:hover {
    border: 2px solid seagreen;
    transition: 0.5s;
    color: white;
}
#backtotopPng {
  width: 54px;
}
#BottomSpace{
 text-align: left;
 width: 94%;
 max-width: 800px;
 margin: auto;
}


@media only screen and (max-width: 600px) {
#navmenu{
  display: block;
}

#mainAsideFlex{
  display: block;
  padding: 0;
}

main{
  width: 100%;
  margin: auto;
  background: #F5F2E8;
  padding: 0;
  box-shadow: none;
  margin-bottom: 100px;
  }

aside{
  margin-top: 24px;
  margin-bottom: 24px;
}

      .carousel-item h2 {
        font-size: 1.2em;
      }
      .carousel-item p {
        font-size: 0.9em;
      }
      .arrow {
        padding: 10px;
        font-size: 16px;
      }



    }

