/* FONT IMPORT */
@import url('https://fonts.cdnfonts.com/css/open-dyslexic');
@font-face {
  font-family: serpantinde; 
  src: url(serpentine.ttf); 
}

:root {
  /* Background Colors: */
  --background-color: #013530;
  --content-background-color: #047d6a;
  --sidebar-background-color: #047d6a;

  /* Text Colors: */
  --text-color: #f6e0af;
  --sidebar-text-color: #f6e0af;
  --link-color: #c0f18c;
  --link-color-hover: #a7f0ec;

  /* Text: */
  --font: 'Open-Dyslexic', sans-serif;
  --heading-font: serpantinde, monospace;
  --font-size: 15px;

  /* Other Settings: */
  --margin: 0px;
  --padding: 20px;
  --border: 2px solid #02322b;
  --round-borders: 0px;
  }

 

/* -------------------------------------------------------- */
/* BASICS */
/* -------------------------------------------------------- */

* {
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: flex-strt;
  justify-content: center;
  min-height: 100vh;
  font-size: var(--font-size);
  margin-right: 8px;
  margin-left: -18px;
  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: 1000px;
  display: grid;
  grid-gap: var(--margin);
  grid-template: "header header" left
  /* 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);
}

li {
  background: var(--content-background-color);
  padding: 5px;
  margin: 10px auto;
 

}

ul {
    list-style-type: none;  
}

li::before {
  content: url('https://rimoncik.neocities.org/solder%20button.jpg') ' ';
  ;;
}


    .image-container {
      
      margin-left: 10px;
    }
  