/* 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." */

@font-face {
    font-family: "AngelicWar";
    src: url("https://db.onlinewebfonts.com/t/ab18cf181e527f74dfc2969e032b4670.eot");
    src: url("https://db.onlinewebfonts.com/t/ab18cf181e527f74dfc2969e032b4670.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/ab18cf181e527f74dfc2969e032b4670.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/ab18cf181e527f74dfc2969e032b4670.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/ab18cf181e527f74dfc2969e032b4670.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/ab18cf181e527f74dfc2969e032b4670.svg#AngelicWar")format("svg");
}

@font-face {
    font-family: "Minecraftia 2.0";
    src: url("https://db.onlinewebfonts.com/t/d35b191ec3938dab10be20a8c590428f.eot");
    src: url("https://db.onlinewebfonts.com/t/d35b191ec3938dab10be20a8c590428f.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/d35b191ec3938dab10be20a8c590428f.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/d35b191ec3938dab10be20a8c590428f.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/d35b191ec3938dab10be20a8c590428f.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/d35b191ec3938dab10be20a8c590428f.svg#Minecraftia 2.0")format("svg");
}


:root {
    --text-color: #000000;
      --link-color: #6588a3;
  --link-color-hover: #6588a3;

  --font: Helvetica, sans-serif;
  --font-size: 14px;

} 

body {
  display: flex;
  flex-direction: column;
  min-height:100vh;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-size: var(--font-size);
  margin: 0;
  padding: var(--margin);
  color: var(--text-color);
  font-family: var(--font);
  line-height: 1.2;
  background: var(--background-color);
  background-image: url("https://i.imgur.com/p6stbEM.jpeg");
  Box-sizing: border-box;
}


.container {  display: grid;
  grid-template-columns: 0.6fr 1.8fr 0.6fr;
  grid-template-rows: 1fr 0.2fr auto 0.2fr ;
  gap: 10px 10px;
  grid-auto-flow: row;
  grid-template-areas:
    "header header header"
    "navbar navbar navbar"
    "leftsidebar main rightsidebar"
    "footer footer footer";
    
    
    
    /* ---------------------------------------------------------------------------------- */
    /* header */
    /* ---------------------------------------------------------------------------------- */
    
}

.header {
  grid-area: header;
  height: 100px;
  border: var(--border);
  border-radius: var(--round-borders);
  overflow: hidden;
  font-size: var;
  padding: 0px;
  margin-top: 20px;
  background-image: url("https://imgur.com/KmaEfro.png");
  display: flex;
  justify-content: center;
  
}

h1 {
    font-family: "AngelicWar"; 
     color:#d6ded5;
     font-size: 3rem; /* 2.5 times the base font size (40px) */ 
    
}




/* ---------------------------------------------------------------------------------- */
/* navbar */
/* ---------------------------------------------------------------------------------- */
.navbar {
  grid-area: navbar;
  height: 40px;
   padding: 5px;
  background: #4a4234 ;
  border: var(--border);
  border-radius: var(--round-borders);
   border-width: 4px;
  border-style: solid;
  border-color: #241f19;
  display: flex;
   justify-content: center
}

navbar {
  line-height: 1.5;
}

navbar a,
navbar a:visited {
  color: var(--link-color);
}

navbar a:hover,
navbar a:focus {
  color: var(--link-color-hover);
  text-decoration-style: wavy;
}


/* ---------------------------------------------------------------------------------- */
/* left sidebar */
/* ---------------------------------------------------------------------------------- */

.leftsidebar {
  grid-area: leftsidebar;
  width: 200px;
  padding: 0px;
  background: #241f19;
  border: var(--border);
  border-radius: var(--round-borders);
  border-width: 4px;
  border-style: solid;
  border-color: #000000;
   display: block;
   justify-content: center;
   align-content: stretch; 
    text-align: center;
}

h3 {
    font-family: "AngelicWar"; 
     color:#d6ded5;
     font-size: 1.5rem; /* 2.5 times the base font size (40px) */ 
    
}

h4 {
    font-family: "Minecraftia 2.0"; 
     color:#d6ded5 ;
     font-size: 14; /* 2.5 times the base font size (40px) */ 
     margin-top: 20px;
     margin-bottom: 15px;
}


leftsidebar {
  line-height: 1.5;
}


/* ---------------------------------------------------------------------------------- */
/* main */
/* ---------------------------------------------------------------------------------- */

.main { 
  grid-area: main;
  width: 400px;
  overflow-y: auto;
  padding: 0px;
  background: #d6ded5;
  border: var(--border);
  border-radius: var(--round-borders);
  border-width: 4px;
  border-style: solid;
  border-color: #241f19;
   display:block;
   justify-content: center;
   align-content: stretch; 
    text-align: center;
    margin: 0px;
    flex-grow: 1

}


    
.scroll-box {
  background: #709573;
  width: 360px; /* Set a fixed width for the scroll box */
  height: 200px; /* Set a fixed height for the scroll box */
  overflow-y: auto; /* This is the key property for scrolling */
  border: 2px solid #241f19; /* Optional: Add a border for visual clarity */
  padding: 5px; /* Optional: Add some padding inside the box */
  display:block;
 justify-content: center;
 align-items: center; 
  text-align: center;
  margin-left: 13px;
}

p{ 
   font-family: "Minecraftia 2.0"; 
}

h2{
    font-family: "AngelicWar"; 
     color:#000000;
     font-size: 2rem; /* 2.5 times the base font size (40px) */ 
      margin-top: 20px;
     margin-bottom: 15px;
    
}


main {
  line-height: 1;
}


main a,
main a:visited {
  color: var(--link-color);
}

main a:hover,
main a:focus {
  color: var(--link-color-hover);
  text-decoration-style: wavy;
}





/* ---------------------------------------------------------------------------------- */
/* right sidebar */
/* ---------------------------------------------------------------------------------- */


.rightsidebar {
  grid-area: rightsidebar;
  width: 200px;
  padding: 0px;
  background: #241f19;
  border: var(--border);
  border-radius: var(--round-borders);
  border-width: 4px;
  border-style: solid;
  border-color: #000000;
  display: block;
   justify-content: center;
   align-content: stretch; 
   text-align: center;
    
}

h3 {
    font-family: "AngelicWar"; 
     color:#d6ded5;
     font-size: 1.5rem; /* 2.5 times the base font size (40px) */ 
    
}

h4 {
    font-family: "Minecraftia 2.0"; 
     color:#d6ded5 ;
     font-size: 14; /* 2.5 times the base font size (40px) */ 
     margin-top: 20px;
     margin-bottom: 15px;
}


rightsidebar {
  line-height: 1.5;
}


/* ---------------------------------------------------------------------------------- */
/* footer
/* ---------------------------------------------------------------------------------- */
.footer {
  grid-area: footer;
  height: 50px;
  border: var(--border);
  border-radius: var(--round-borders);
  overflow: hidden;
  font-size: 0.75em;
  padding: 10px;
  background-image: url("https://imgur.com/KmaEfro.png");
  display: flex;
  justify-content: center;
  position:relative;
 margin-bottom:0px;
 
}

footer a,
footer a:visited {
  color: var(--link-color);
}

footer a:hover,
footer a:focus {
  color: var(--link-color-hover);
}



