/* * {
     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 ol li {
    margin: 1rem;
}

section ol li a{
    color: aliceblue;
    text-decoration: none;
}

section ol li a span{
    float: right;
    white-space:nowrap;
}

/* 이 위까진 디자인 페이지 css */
/* 여기서부터는 디자인 페이지에서 작품 링크 들어가서 css */

section #notification {
    margin: 0 0 3rem 2rem;
    color: rgba(206, 121, 245, 0.5);
}

section .oshirase {
    font-size: small;
    text-align: center;
    color: rgba(240, 248, 255, 0.247);
    margin: 0;
}

section .texts {
    margin: 5% 5% 0 5%;
    text-align: center;
    word-break: break-all;
}

section .center{
    text-align: center;
    display: block;
    margin: 3rem auto 0;

}

section figcaption{
    text-align: center;
    margin: 0;
}

a {
    color: rgb(237, 191, 255);
}

footer {
    text-align: center;
    font-size: small;
    display : scroll;
    margin: 0;
}