/* * {
    background-color: rgba(188, 255, 31, 0.13);
   border: 1px rgba(255, 0, 0, 0.301) solid;
} */

body {
   color: aliceblue;
   background-color: black;
}

header { 
   display: flex;
   justify-content: space-between;
}

header span{ 
   word-break: keep-all;
}

header MARQUEE {
   width: 60%;
   margin: 0 1rem 0 1rem;
}

header a {
   text-decoration: none;
   color: aliceblue;
   margin: 0;
}

header .right {
   float: right;
   white-space:nowrap;
}

nav {
   width: 100%;
   background-color: aqua;
}

nav #home {
   border: none;
}

nav #home img {
   animation: rotate_image 60s ease-in-out infinite;transform-origin: 50% 50%;
}

@keyframes rotate_image{
   100% {
       transform: rotate(360deg);
   }
}

nav #pageFocus {
   border: 4px rgb(155, 55, 255) double;
}

nav a {
   text-decoration: none;
   color: aliceblue;
   border: 4px rgba(162, 70, 255, 0.562) double;
   float: left;
   margin: 2px;
}

section {
   background: url(../img/Momiji_flow.png);
   display: inline-block;
   width: 100%;
   padding-bottom: 2rem;
}

section ul{
    margin-bottom: 1rem;
}

section ul h1{
    font-size: small;
    margin: 0;
}

section ul li{
    margin-left: 2rem;
}

footer {
   text-align: center;
   font-size: small;
   display : scroll;
   margin: 0;
}