html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
    background: url("images/bg.jpg");
    background-size: 1920px 1080px;
    background-position: 50% 0;
    background-color: black;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

.item1 { grid-area: headline; }
.item2 { grid-area: img; }
.item3 { grid-area: p1; }
.item4 { grid-area: p2; }
.item5 { grid-area: p3; }
.item6 { grid-area: p4; }
.item7 { grid-area: footer; }

main {
    margin: 20px;
}

p {
    margin: 8px;
}

h1 {
    font-size: 26px;
    text-decoration: underline;
}

audio {
    margin-top: 15px;
    width: 90%;
}

a {
    color: white;
}

.grid-container {
    display: grid;
    grid-template-areas:
        'headline headline headline headline'
        'img img img img'
        'p1 p2 p3 p4'
        'footer footer footer footer';
    grid-template-columns: 22% 30% 24% 24%;
    background-color: rgba(0, 0, 0, 0.8);
    width: 900px;
    margin: auto;
}

.grid-container > div {
    color: white;
    text-align: center;
    padding: 10px 0;
    border: 2px solid white;
    box-shadow: 
        rgb(93, 93, 255) 0px 0px 3px,
        rgb(93, 93, 255) 0px 0px 3px;
}

.item1 {
    font-family: "Shojumaru", system-ui;
    font-size: 60px;
    text-shadow: 
        blue 0px 0px 6px,
        blue 0px 0px 6px,
        blue 0px 0px 6px,
        blue 0px 0px 6px,
        blue 0px 0px 6px;
}

.item2, .item3, .item4, .item5, .item6, .item7 {
    font-family: "Nanum Brush Script";
    text-shadow: 
        blue 0px 0px 6px,
        blue 0px 0px 6px,
        blue 0px 0px 6px;
}

.item3, .item4, .item5, .item6 {
    font-size: 24px;
    word-wrap: break-word;
    max-height: 350px;
}

.item4 {
    overflow-y: scroll;
}

.item7 {
    font-size: 20px;
    font-style: italic;
    font-weight: 600;
}

.ninja {
    width: 70%;
    max-width: 350px;
    animation: rotate 4s cubic-bezier(0.23, 1, 0.320, 1);
}

/* ANIMATIONS */

@keyframes rotate {
    0% {
        transform: rotateZ(-10000deg);
        opacity: 0;
        filter: blur(10px);
    }
    100% {
    }
}