/* FONT IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Doto:wght@100..900&display=swap');

/* -------------------------------------------------------- */
/* VARIABLES */
/* -------------------------------------------------------- */
/* Variables are used like this: var(--text-color) */
:root {
  /* Background Colors: */
  --background-color: white;
  --content-background-color: transparent;
  --sidebar-background-color: transparent;

  /* Text Colors: */
  --text-color: black;
  --header-color: black;
  --sidebar-text-color: black;
  --footer-text-color: black;
  --link-color: #0000FF;
  --link-color-hover: #0000FF;

  /* Font: */
  --font-family: Times New Roman, serif;
  --heading-font: Times New Roman, serif;
  --alt-font: Arial, sans-serif;
  --font-size: 15px; 

  /* Other Settings: */
  --margin: 5px;
  --padding: 15px;
  --line-spacing: 14px;
      
}

/*MAIN STUFF*/


/*HEADER*/


header {
    font-family: var(--heading-font);
    font-size: 50px;
    color: var(--header-color);
    background-color: var(--sidebar-background-color);
    border: var(--border-color) 4px solid;
    border-radius: 15px;
    width: 700px;
    margin-bottom: 15px;
    margin-top: 15px;
    padding: var(--padding); 
    text-align: center;

}


/* ASIDE/SIDEBAR */

aside {
    background-color: var(--sidebar-background-color);
    border: var(--border-color) 4px;
    border-style: var(--border-style);
    border-radius: 15px;
    line-height: 12px;
    font-family: var(--font-family);
    padding: var(--padding);
}

aside h5 {
    color: #fbf2ff;
}

aside h2 {
    color: #f6e3ff;
}

/*BREADCRUMB NAVBAR*/

/* Style the list */
ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
  background-color: #eee;
}

/* Display list items side by side */
ul.breadcrumb li {
  display: inline;
  font-size: 18px;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li+li:before {
  padding: 8px;
  color: black;
  content: "/\00a0";
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
  color: var(--link-color);
  text-decoration: none;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
  color: var(--link-color);
  text-decoration: underline;
}


#columnssidebar {
    border-radius: 9px;
    overflow-y: hidden;
    font-family: var(--font-family);
    border-color: var(--border-color);
    border-top-width: 20px;
    border-left-width: 2px;
    border-right-width: 2px;
    border-bottom-width: 2px;
    border-style: solid;
    background: var(--sidebar-background-color);
    text-align: center;
    
}

#columnssidebar img{
    padding-bottom: 10px;
}

.containcolumnssidebar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-direction: column;
}

#columnssidebar:nth-child(1),
#columnssidebar:nth-child(2),
#columnssidebar:nth-child(3) {
  width: 300px;
}

/*MAIN*/

main {
    border: var(--border-color) 4px;
    border-style: var(--border-style);
    border-radius: 15px;
    background-color: var(--content-background-color);
    line-height: var(--line-spacing);
    padding: var(--padding);
    text-align: center;

}


/*FOOTER*/

footer {
    background-color: var(--sidebar-background-color);
    border: var(--border-color) 4px;
    border-style: var(--border-style);
    border-radius: 15px;
    padding: var(--padding);
    font-family: var(--font-family);
    font-size: 12px;
    color: var(--footer-text-color);
    text-align: center;
    
}

/*GRID FORMATTING (TUTORIAL FROM PETRAPIXEL NEOCITIES)*/

body {
  display: grid;
  grid-gap: 10px;
  grid-template:
    "myHeader myHeader"
    "mySidebar mySidebar"
    "myMainContent myMainContent"
    "myFooter myFooter"
    / 1fr 4fr;
    margin: 10px;
}

header { grid-area: myHeader; }
aside { grid-area: mySidebar; }
main { grid-area: myMainContent; }
footer { grid-area: myFooter; }


/*MOBILE RESPONSIVENESS*/

@media (max-width: 800px) {
  body {
    grid-template:
      "myHeader"
      "mySidebar"
      "myMainContent"
      "myFooter";
  }  
}



/*FONT TYPES FORMATTING*/


h1, h2, h3, h4, h5 {
    font-family: var(--heading-font);
    color: var(--header-color);
    font-style: normal; 
}

h1 {
  font-size: 1.8em;
    font-style: normal; 
}

h2 {
  font-size: 1.4em;
    font-style: normal;
}

h3 {
  font-size: 1.3em;
    font-style: normal; 
}

h4 {
  font-size: 1.2em;
    font-style: normal; 
}

h5 {
  font-size: 1.1em;
    font-style: normal; 
}

h6 {
  font-size: 1em;
    font-style: normal; 
}

p {
    font-size: var(--font-size);
    font-family: var(--font-family);
    color: var(--text-color);
    
    
    
}

/*LINK FORMATTING COLOURS*/

/* Links: */

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

a:hover,
a:focus {
  color: var(--link-color-hover);
  text-decoration: none;
cursor: var(--grab-cursor);
}


/*MAIN CONTENT*/

section fieldset{
    border-style: var(--border-style-section);
    border-width: 2px;
    border-color: var(--border-color);
    border-radius: 14px;
    overflow-y: auto;
    font-family: var(--font-family);
    color: var(--text-color);
}

#columns3 fieldset {
    min-height: 160px;
}


.containcolumns {
  display: flex;
  gap: 10px;
}

#row5050:nth-child(1),
#row5050:nth-child(2) {
  width: 50%;
}

#columns3:nth-child(1),
#columns3:nth-child(2),
#columns3:nth-child(3) {
  width: 33%;
  height: auto;
}

#fullwidth {
    border-style: var(--border-style-section);
    border-width: 2px;
    border-color: var(--border-color);
    border-radius: 14px;
    font-family: var(--font-family);
    color: var(--text-color);
    padding: var(--padding);
}

.containermasonry {
  display: flex;
  flex-direction: row;
  gap: 2%;
  flex-wrap: wrap;
}

#threebythree:nth-child(1),
#threebythree:nth-child(5),
#threebythree:nth-child(7) {
  width: 32%;
  height: 40%;
}

#threebythree:nth-child(2),
#threebythree:nth-child(8) {
  width: 32%;
  height: 30%;
}

#threebythree:nth-child(3),
#threebythree:nth-child(6),
#threebythree:nth-child(9) {
  width: 32%;
  flex-grow: 1;
}

#threebythree:nth-child(4) {
  width: 32%;
  height: 25%;
}

#threebythree img {
    width: 300px;
}
/*CUSTOM SCROLLBARS*/


* {
scrollbar-width: auto;
scrollbar-color: darkgrey;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
width: 10px;
}

*::-webkit-scrollbar-track {
background: #ffffff;
}

*::-webkit-scrollbar-thumb {
background-color: darkgrey;
border-radius: 10px;
}


/*TABLE OF CONTENTS*/

#toc {
    font-family: var(--font-family);
    font-size: var(--font-size);
    padding: var(--padding);
    color: var(--text-color);
}

/*SNOWFLAKES*/
/* customizable snowflake styling */
.snowflake {
  color: black;
  font-size: 1em;
  font-family: Arial;
  text-shadow: 0 0 1px #000;
}

@-webkit-keyframes snowflakes-fall{0%{top:-10%}100%{top:100%}}@-webkit-keyframes snowflakes-shake{0%{-webkit-transform:translateX(0px);transform:translateX(0px)}50%{-webkit-transform:translateX(80px);transform:translateX(80px)}100%{-webkit-transform:translateX(0px);transform:translateX(0px)}}@keyframes snowflakes-fall{0%{top:-10%}100%{top:100%}}@keyframes snowflakes-shake{0%{transform:translateX(0px)}50%{transform:translateX(80px)}100%{transform:translateX(0px)}}.snowflake{position:fixed;top:-10%;z-index:9999;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default;-webkit-animation-name:snowflakes-fall,snowflakes-shake;-webkit-animation-duration:10s,3s;-webkit-animation-timing-function:linear,ease-in-out;-webkit-animation-iteration-count:infinite,infinite;-webkit-animation-play-state:running,running;animation-name:snowflakes-fall,snowflakes-shake;animation-duration:10s,3s;animation-timing-function:linear,ease-in-out;animation-iteration-count:infinite,infinite;animation-play-state:running,running}.snowflake:nth-of-type(0){left:1%;-webkit-animation-delay:0s,0s;animation-delay:0s,0s}.snowflake:nth-of-type(1){left:10%;-webkit-animation-delay:1s,1s;animation-delay:1s,1s}.snowflake:nth-of-type(2){left:20%;-webkit-animation-delay:6s,.5s;animation-delay:6s,.5s}.snowflake:nth-of-type(3){left:30%;-webkit-animation-delay:4s,2s;animation-delay:4s,2s}.snowflake:nth-of-type(4){left:40%;-webkit-animation-delay:2s,2s;animation-delay:2s,2s}.snowflake:nth-of-type(5){left:50%;-webkit-animation-delay:8s,3s;animation-delay:8s,3s}.snowflake:nth-of-type(6){left:60%;-webkit-animation-delay:6s,2s;animation-delay:6s,2s}.snowflake:nth-of-type(7){left:70%;-webkit-animation-delay:2.5s,1s;animation-delay:2.5s,1s}.snowflake:nth-of-type(8){left:80%;-webkit-animation-delay:1s,0s;animation-delay:1s,0s}.snowflake:nth-of-type(9){left:90%;-webkit-animation-delay:3s,1.5s;animation-delay:3s,1.5s}

/*IMAGE STYLING*/


#lordeimage {
    margin: 10px;
    width: 420px;
}