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%;
    filter: drop-shadow(16px 16px 20px red) invert(75%);
}

@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 .container {
    display: flex;
    flex-direction: column;
}

section .container .note {
    width: 50%;
    border: 1px rgb(155, 55, 255) dashed;
}

section .container .days {
    margin: 0 1rem 0 1rem;
}
 
section .container .text {
    word-break: keep-all;
    margin: 0 1rem 0.2rem 1rem;
}

footer {
    text-align: center;
    font-size: small;
    display : scroll;
    margin: 0;
}
