html {font-family: helvetica, verdana, "sans serif"; font-size:12pt; color:ivory;}

:root { /*drawn from the kirby star banner*/
	--black: #000000;
	--dark: #0A1149; /*dark blue small star*/
	--middle: #FC74B4; /*dark pink big star*/
	--light: #B0FCCC; /*sea green big star*/
	--accentdark: #5C94FC; /*blue medium star*/
	--accentlight: #8C0074; /*magenta hill*/
	--accentorange: #FC9838; /*orange big star*/
	--white: #ffffff;
}
body {
  background: linear-gradient(180deg, var(--black), var(--black));
  background-size: 400% 400%;
     }
   
.gametitle { /*this is intended for spans, to give header images a place to go outside of headers*/
  display: inline-block; 
  width: 100%;
  background-image: url('/kirby_background.png');
  background-repeat: repeat-x;
  background-size: auto 168px;
  height: 144px; 
  }
h1 {
  background: rgba(0, 0, 0, 0.8) ;
  border: 5px solid var(--accentdark);
  border-radius: 8px; 
  padding: 5px;
  display: table;
  margin: 12px auto;
  font-size: 28pt;
}
h1::before { 
  content: url('/amybackandforthbigger.gif');
  }

h1::after { 
  content: url('/amybackandforthbigger.gif');
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;  
}


ul.sidebar{
    float: none;
    width: 200px;
    height: 40px;
    margin-bottom: 8px;
    line-height: 32px;
    text-align: center;
    border-radius: 8px;
}

ul li a{
    text-decoration: none;
    color: var(--middle);
    display: block;
    border: 5px solid var(--accentdark);
    border-radius: 8px;
    background-color: var(--dark);
    margin-bottom: 4px;
}

li.dropside{
    float: none;
    width: 200px;
    height: 40px;
    margin-left: 5px;
    line-height: 32px;
    text-align: center;
    border-radius: 8px;
}

ul li a:hover{
    background-color: var(--light);
  color: var(--accentlight);
}

ul li ul li{
    display: none;
    width: 200px;
}

ul > li {
  position: relative;
} 

ul li ul {
  position: absolute;
  top: 0;
}

ul li:hover ul li{
    display: block;
    margin-left: 100%;
}
.center {
  text-align: center;
}
.column {
  float: left;
  padding: 10px;
}
.column.side {
  width: 15%;
}
.column.middle {
  width: 70%;
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
.gallery {
  margin: 5px;
  margin-bottom: 15px;
  border: 1px solid var(--accentlight);
  float: left;
  width: 320px;
}
.gallery:hover {
  border: 1px solid var(--light);
}
.gallery img {
  width: 100%;
  height: auto;
  vertical-align:bottom;
  
}
section::after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
  }