/* FONT IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Bruno+Ace&family=Michroma&family=Oxanium:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bruno+Ace&family=Michroma&family=Oxanium:wght@200..800&family=Sunflower:wght@300&display=swap');

  
/* -------------------------------------------------------- */
/* VARIABLES */
/* -------------------------------------------------------- */

/* Variables are used like this: var(--text-color) */
:root {
  /* Background Colors: */
  --background-color: #004831;
  --content-background-color: #ffffff;
  --sidebar-background-color: #ffffff;

  /* Text Colors: */
  --text-color: #006253;
  --sidebar-text-color: #0a3f35;
  --link-color: #00794d;
  --link-color-hover: #007eff;

  /* Text: */
  --font: 'Oxanium', sans-serif;
  --heading-font: 'Bruno Ace', sans-serif;
  --tab-font: 'Oxanium', sans-serif;
  --font-size: 18px;

  /* Other Settings: */
  --margin: 10px;
  --padding: 12px;
  --border: 5px solid #b8ffd1;
  --round-borders: 20px;
  --sidebar-width: 200px;
}

/* -------------------------------------------------------- */
/* BASICS */
/* -------------------------------------------------------- */

* {
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: flex-start;
  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("");
  
}

::selection {
  /* (Text highlighted by the user) */
  background: rgba(0, 0, 0, 0.2);
}

mark {
  /* Text highlighted by using the <mark> element */
  text-shadow: 1px 1px 4px var(--link-color);
  background-color: inherit;
  color: var(--text-color);
}

/* Links: */
a {
  text-decoration: underline;
}

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

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

/* -------------------------------------------------------- */
/* LAYOUT */
/* -------------------------------------------------------- */

.layout {
  width: 1200px;
  display: grid;
  grid-gap: var(--margin);
  grid-template: "header header header" auto "leftSidebar main rightSidebar" auto "footer footer footer" auto / var(--sidebar-width) auto var(--sidebar-width);
  /* Confused by the grid? Check out my tutorial: https://petrapixel.neocities.org/coding/positioning-tutorial#grid */
}

main {
  grid-area: main;
  overflow-y: auto;
  padding: var(--padding);
  background: var(--content-background-color);
  border: var(--border);
  border-radius: var(--round-borders);

}

/* -------------------------------------------------------- */
/* HEADER */
/* -------------------------------------------------------- */

header {
  grid-area: header;
  font-size: 1.2em;
  border: var(--border);
  border-radius: var(--round-borders);
  background: var(--content-background-color);background-image: linear-gradient(to right, #66ffa0, #00dcbd)

}

.header-content {
  padding: var(--padding);

}

.header-title {
  font-family: var(--heading-font);
  font-size: 1.5em;
  font-weight: bold;
}

.header-image img {
  width: 100%;
  height: auto;
}

/* -------------------------------------------------------- */
/* SIDEBARS */
/* -------------------------------------------------------- */

aside {
  grid-area: aside;
  border: var(--border);
  border-radius: var(--round-borders);
  overflow: hidden;
  background: var(--sidebar-background-color);
  padding: var(--padding);
  color: var(--sidebar-text-color);
}

.left-sidebar {
  grid-area: leftSidebar;

}

.right-sidebar {
  grid-area: rightSidebar;
}

.sidebar-title {
  font-weight: bold;
  font-size: 1.2em;
  font-family: var(--heading-font);
  font-style: bold;
	border-radius: 5px;

  background-image: linear-gradient(to right, #66ffa0, #00dcbd)

}

.sidebar-section:not(:last-child) {
  margin-bottom: 1em;
}

.sidebar-section ul,
.sidebar-section ol {
  padding-left: 1.5em;
}

.sidebar-section > *:not(p):not(ul):not(ol):not(blockquote) {
  margin-top: 3px;
}

/* Sidebar Blockquote: */

.sidebar-section blockquote {
  background: rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin: 1em 0;
  border-radius: 10px;
  overflow: hidden;
}

.sidebar-section blockquote > *:first-child {
  margin-top: 0;
}

.sidebar-section blockquote > *:last-child {
  margin-bottom: 0;
}

/* Site Button: */

.site-button {
  display: flex;
  flex-direction: column;
  align-items: center;
	


}

.site-button textarea {
  font-family: 'Oxanium';
  font-size: 0.7em;
}
/* tabs
 */

 

/* -------------------------------------------------------- */
/* FOOTER */
/* -------------------------------------------------------- */

footer {
  grid-area: footer;
  border: var(--border);
  border-radius: var(--round-borders);
  overflow: hidden;
  font-size: 0.75em;

  padding: 15px;
  background: var(--content-background-color);
  display: flex;
background-image: linear-gradient(to right, #66ffa0, #00dcbd)
  
}

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

}

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

/* -------------------------------------------------------- */
/* NAVIGATION */
/* -------------------------------------------------------- */

nav {
  margin-bottom: 1em;

}

nav .sidebar-title {
  margin-bottom: 0.5em;

}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  user-select: none;
border-radius: 5px;
background-image: linear-gradient(to right, #b0ffce, #a3fff2)
}

nav ul li {
  margin-bottom: 0;
}

nav > ul li > a,
nav > ul li > strong {
  display: inline-block;
}

nav > ul li > a,
nav > ul li > details summary,
nav > ul li > strong {
  padding: 5px 10px;
}

nav > ul li > a.active,
nav > ul li > details.active summary {
  font-weight: bold;
}

nav ul summary {
  cursor: pointer;
}

nav ul ul li > a {
  padding-left: 30px;
}



/* -------------------------------------------------------- */
/* CONTENT */
/* -------------------------------------------------------- */

main {
  line-height: 1.5;
}

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

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

main p,
main .image,
main .full-width-image,
main .two-columns {
  margin: 0.75em 0;
}

main ol,
main ul {
  margin: 0.5em 0;
  padding-left: 1.5em;
}

main ol li,
main ul li {
  margin-bottom: 0.2em;
  line-height: 1.3;
}

main ol {
  padding-left: 2em;
}

main blockquote {
   
  padding: 10px;
  margin: 1em 0;
  border-radius: 5px;
background-image: linear-gradient(to right, #b0ffce, #a3fff2)
}

main pre {
  margin: 1em 0 1.5em;
}

main code {
  text-transform: none;
}

main center {
  margin: 1em 0;
  padding: 0 1em;
}

main hr {
  border: 0;
  border-top: var(--border);
  margin: 1.5em 0;
}

/* HEADINGS: */

main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
  font-family: var(--heading-font);
  margin-bottom: 0;
  line-height: 1.5;
}

main h1:first-child,
main h2:first-child,
main h3:first-child,
main h4:first-child,
main h5:first-child,
main h6:first-child {
  margin-top: 0;
}

main h1 {
  font-size: 1.5em;
border-radius: 10px;
background: var(--content-background-color);background-image: linear-gradient(to right, #66ffa0, #00dcbd)

}

main h2 {
  font-size: 1em;
background: var(--content-background-color);background-image: linear-gradient(to right, #66ffa0, #00dcbd)
}


main h3 {
  font-size: 1.3em;
border-radius: 10px;
background: var(--content-background-color);background-image: linear-gradient(to right, #66ffa0, #00dcbd)
}


main h4 {
  font-size: 0.5em;
border-radius: 1px;
background: var(--content-background-color);background-image: linear-gradient(to right, #66ffa0, #00dcbd)
}


main h5 {
  font-size: 1.1em;
border-radius: 10px;
background: var(--content-background-color);background-image: linear-gradient(to right, #66ffa0, #00dcbd)
}


main h6 {
  font-size: 1em;
border-radius: 10px;
background: var(--content-background-color);background-image: linear-gradient(to right, #66ffa0, #00dcbd)
}


/* COLUMNS: */

.two-columns {
  display: flex;
}

.two-columns > * {
  flex: 1 1 0;
  margin: 0;
}

.two-columns > *:first-child {
  padding-right: 0.1em;
}

.two-columns > *:last-child {
  padding-left: 1em;
}

/* -------------------------------------------------------- */
/* CONTENT IMAGES */
/* -------------------------------------------------------- */

.image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.full-width-image {
  display: block;
  width: 100%;
  height: auto;
}

.images {
  display: flex;
  width: calc(100% + 5px + 5px);
  margin-left: -5px;
  margin-right: -5px;
}

.images img {
  width: 100%;
  height: auto;
  padding: 5px;
  margin: 0;
  overflow: hidden;
}

* {
    margin: 0;
    padding: 0;
}

h1, h3{
  text-transform: uppercase;
  font-weight: normal;
}
/* Infobox */

.infobox {
  margin: 0;
  box-sizing: border-box;
  border-radius: 4px;



  max-width: 250px;
  color: #005d50;

  border: 4px solid rgba(0, 103, 93, 0.1);
  

  background-color: rgba(255, 255, 255, 0);
  padding: 6px;
}

/* Margin between blocks */
.infobox > *:not(:last-child) {
  margin-bottom: 6px;
	
}

/* Defines header container */
.infobox .heading {
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}


/* Infobox main header */
.infobox .heading h2 {
  margin: 0;
  line-height: 1;
  font-size: 20px;
}

/* Infobox block header */
.infobox .heading h3 {
  margin: 0;
  line-height: 1;
  font-size: 16px;
}

.infobox-img {
  display: block;
  width: 100%;
	border: 2px
}

/* Row inside a block*/
.infobox-datarow {
  font-size: 12px;
	
}

/* Block heading margin */
.infobox-group .heading {
  margin-bottom: 1px;
}

/* Defines data display */
.infobox-datarow .data-heading,
.infobox-datarow .data-content {
  display: inline-block;
  margin: 2px;
  vertical-align: top;

}

.infobox-datarow .data-heading {
  width: 72px;
  font-weight: 500;
}

.infobox-datarow .data-content {
  list-style-type: none !important;
  padding-left: 0;
}

.infobox-datarow .data-content * {
  white-space: pre-wrap;
}

/* Removing bullets that obsidian renders from code blocks */
.infobox .infobox-datarow .list-bullet::before,
.infobox .infobox-datarow .list-bullet,
.infobox .infobox-datarow .list-bullet::after {
  all: unset !important;
  display: none !important;
}

/* Removing padding of first column of multi-column markdown */
.mcm-column-div:is(:first-child) {
  padding-inline-start: 1px;
}


/* Increasing page width */
body {
  --file-line-width: 900px;
}
/* -------------------------------------------------------- */
/* TABS */
/* -------------------------------------------------------- */
/* Style the tab */
.tab {
  font-family: var(--tab-font);
  overflow: hidden;
  border: 3px solid #26d481;
  background-color: #e1fff3;
	border-radius: 10px;
	 
}

/* Style the buttons that are used to open the tab content */
.tab button {
  font-family: var(--tab-font);
  background-color: #c6ffdc;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
	font: 'Oxanium', sans-serif;
}

/* Change background color of buttons on hover */
.tab button:hover {
  font-family: var(--tab-font);
  background-color: #ddffea;
	font: 'Oxanium', sans-serif;
}

/* Create an active/current tablink class */
.tab button.active {
  font-family: var(--tab-font);
  background-color: #00dcbd;
	border-radius: 10px;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 11px;
  border: none;
}
#floated{
    float: left;
    width: 150px;
    background: #ffffff;
}

/* -------------------------------------------------------- */
/* ACCESSIBILITY */
/* -------------------------------------------------------- */

/* please do not remove this. */

#skip-to-content-link {
  position: fixed;
  top: 0;
  left: 0;
  display: inline-block;
  padding: 0.375rem 0.75rem;
  line-height: 1;
  font-size: 1.25rem;
  background-color: var(--content-background-color);
  color: var(--text-color);
  transform: translateY(-3rem);
  transition: transform 0.1s ease-in;
  z-index: 99999999999;
}

#skip-to-content-link:focus,
#skip-to-content-link:focus-within {
  transform: translateY(0);
}


/* -------------------------------------------------------- */
/* MOBILE RESPONSIVE */
/* -------------------------------------------------------- */

/* CSS Code for devices < 800px */
@media (max-width: 800px) {
  body {
    font-size: 14px;
  }

  .layout {
    width: 100%;
    grid-template: "header" auto  "main" auto "leftSidebar" auto "rightSidebar" auto "footer" auto / 1fr;
    /* Confused by the grid? Check out my tutorial: https://petrapixel.neocities.org/coding/positioning-tutorial#grid */
  }

  
  

  aside {
    border-bottom: 1px solid;
    padding: 9px;
    font-size: 0.9em;
  }

  
  nav {
    padding: 0;
  }

  nav > ul {
    padding-top: 0.5em;
  }

  nav > ul li > a,
  nav > ul li > details summary,
  nav > ul li > strong {
    padding: 0.5em;
  }

  main {
    max-height: none;
    padding: 15px;
  }

  .images {
    flex-wrap: wrap;
  }

  .images img {
    width: 100%;
  }

  #skip-to-content-link {
    font-size: 1rem;
  }
}
.wrapper {
  display: flex;
}

.float {
  float: right;
  height: 100%;
  display: flex;
  align-items: flex-end;
  shape-outside: inset(calc(100% - 100px) 0 0);
}
.button {
  border: none;
  color: #00dcbd;
  padding: 5px 12px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  margin: 4px 2px;
  cursor: pointer;
}


.button1 {background-color: #00dcbd;} /* Green */
.button2 {background-color: #00dcbd;} /* Blue */
.button3 {background-color: #66ffa0;} /* Red */ 
.button4 {background-color: #00dcbd; color: black;} /* Gray */ 
.button5 {background-color: #66ffa0;} /* Black */