html {

 padding: 0;
 background-image:url("/images/eyetile.GIF");  
 }
body {
  border-radius: 25px;
  margin: 2% 15% 2% 15%;
 font-family: Courier, serif; 
 font-size: 100%;
 background-color:#4A0C00;
 text-align:center;
 box-shadow: 10px 10px 50px #290A0594, -10px -10px 50px #ffffff94, inset 10px 10px 200px #290A05d4 ;
 }
 .bigdiv{
   border-radius: 25px;
   border: 5px outset #8C0D00;
 }
h1 {
  padding: 1% 0.5em 0 0.5em;
 font-size: 220%; 
 color: white; 
 text-align: center;
 filter: drop-shadow(3px 3px 20px #A6C3FF);
 
 }
h2 {
 font-size: 150%; 
 color: white; 
 }
 
 h5 {
font-size: 100%; 
 color: white; 
 text-align:center;
 }
 
p,ul,li,td {
padding: 0 0.5em 1em 5em;
 color: white; 
 text-align:left;
 }
a:link {
 color: #FFFFFF;
 text-decoration: none;
 }
a:visited {
 color: #FFFFFF;
 }
a:hover {
 color: white;
 text-decoration: none;
 font-weight: bold;
}
a:active, a:focus {
 color: white;
}
.bottomtxt{
  padding:0.5em;
  text-align:center;
  margin:0;
  background-color:#3D201C;
  border-radius:25px 25px 0 0;
  max-width: 100%;
  min-width: 10px;
  height: auto;
  border:3px solid #3D201C;
  line-height: 1;
}
.bottom{
  padding:0;
  line-height:0;
  margin:0;
}
.space {
  margin:8em;
}
.menu {
  padding : 0.5em;
  margin:0;
  text-align:center;
  background-color:#3D201C;
  border-radius:25px;
  box-shadow: 0px 5px 10px #ffffff30;
  line-height:2;
}
.column {
  float: left;
}

.left {
  width:7%;
  align-content:center;
  padding: 0;
  margin-left: 1%;
  margin-right:0.2%;
  
}
.middle {
  width:7%;
  align-content:center;
  padding: 0;
  margin-left: 0.2%;
  margin-right:0%;
}

.right {
  width: 82%;
  margin-left: 0%;
  padding:0;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}

footer {
  align-content: stretch;
  position:fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 0 ;
}
.glow-on-hover {
    font-family: Courier, monospace; 
    width: 130px;
    height: 25px;
    border-color: white;
    outline: white;
    color: #3D201C;
    background-color: #3D201C;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 20px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 20px;
}

.glow-on-hover:active {
    color: white;
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    left: 0;
    top: 0;
    border-radius: 20px;
}

dialog{
  background-color:#3D201C;
  border-radius:20px;
  border: none;
  color: white;
  box-shadow: 0px 0px 2000px 50px #3B2370, inset 10px 10px 200px #00000030 ;
  
}



@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}