@font-face {                  
font-family: 'unixel';
src: url(https://humantooth.neocities.org/fonts/unixel-Regular.woff2) format('woff2');
font-weight: normal;
font-style: normal;
} 

@font-face {                  
font-family: 'Illusion';
src: url(https://litterbug.neocities.org/IllusionSerif-Regular.woff2) format('woff2');
font-weight: normal;
font-style: normal;
} 

@font-face {                  
font-family: 'SectorMono';
src: url(https://humantooth.neocities.org/fonts/SectorMono-Normal.woff) format('woff');
font-weight: normal;
font-style: normal;
} 

h1 {
  color: black;
  font-family: Papyrus, fantasy; 
  font-size: 24px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 26.4px;
}

h2 {
  color: black;                 
  font-family: SectorMono;
  font-weight: normal;
  font-style: normal;
  font-size: 20px; font-variant: normal; line-height: 26.4px; 
}
  
h3 {
  color: black;
  font-family: serif; 
  font-size: 24px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 26.4px; 
}

h4 {
  color: black;
  font-family: sans-serif; 
  font-size: 18px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 26.4px; 
}

body {
  background-image: url("plaid3.jpg");
  color: black;
  font-family: serif; 
  font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 20px;
  min-width: 250px;
}

p {
  color: black;
  font-family: unixel;
  font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 20px;
}

a:link {
  color: deeppink;
  background-color: transparent;
  text-decoration: underline;
}

a:visited {
  color: darkblue;
  background-color: transparent;
  text-decoration: underline;
}

a:hover {
  color: peachpuff;
  background-color: transparent;
  text-decoration: underline;
}

img {
  max-width: 100%;
}

/*END OF BASE STYLES*/

.parentcontainer{
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  align-items: flex-start;
  gap: 10px 30px;
  max-width: 100%;
}

@media (max-width: 800px){
  .parentcontainer {flex-flow: column;}
}

.container {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 10px 30px;
  flex: 3;
}

.sidebar {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 10px 30px;
  flex: 1;
}

.video {
  position: relative;
  max-width: 350px;
  height: auto;
}

.image-container {
    position: relative;
    max-width: 250px;
    height: auto;
}

@media all and (max-width: 900px){
  .image-container {max-width: 200px;}
}

@media all and (max-width: 450px){
  .image-container {max-width: 150px;}
}

.image-container .after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    color: green;
}
.image-container:hover .after {
    display: block;
    background: rgba(0, 128, 0, 0.6);
}

.text {
  color: white;
  font-size: 20px;
  font-family: unixel;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

@media all and (max-width: 900px){
  .text {font-size: 15px;}
}

@media all and (max-width: 450px){
  .text {font-size: 10px;}
}

.menu {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 10px 30px;
  max-width:100%;
}

.menu-item {
}