/* pixelify-sans-regular - latin */
@font-face {
  font-display: auto; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Pixelify Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/pixelify-sans-v1-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* pixelify-sans-700 - latin */
@font-face {
  font-display: auto; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Pixelify Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/pixelify-sans-v1-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

            body {
                font-family: 'Pixelify Sans';
                margin: 0;
                background-size: 300px;
                color: #CCCCFF;
                background-image:url(images/seaback.png)
            }

            * {
                box-sizing: border-box;
            }
            #container {
                max-width: 900px;
                margin: 0 auto;
            }
            #container a {
                color: #CC99CC;
                font-weight: bold;
            }
            #header {
                width: 100%;
                height: 150px;
                left: 150px;
                position: relative;
                background-image:url(images/corner.png);
                background-repeat: no-repeat;
                background-size:contain;
            }
            #navbar {
                height: 40px;
                background-color: #330099;
                width: 100%;     
            }
            #navbar ul {
                display: flex;
                padding: 0;
                margin: 0;
                list-style-type: none;
                justify-content: space-evenly;
            }
            #navbar li {
                padding-top: 10px;
            }
            #navbar li a {
                color:#CCCCFF;
                font-weight: 800;
                text-decoration: none;
            }
            #navbar li a:hover {
                color:#CC99CC;
                text-decoration: underline;
            }
            #flex {
                display: flex;
            }
            aside {
                background-color: #000066;
                width: 200px;
                padding: 20px;
                font-size: smaller;
            }
            main {
                background-color: #333399;
                flex: 1;
                padding: 20px;
                order: 2;  
            }
            #kikidanger{
                width: 250px;
                margin: 0;  
            }
            footer {
 
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
            }
            h1,
            h2,
            h3 {
                color: #9999FF;
            }
            h1 {
                font-size: 25px;
            }
            strong {
                color: #9999FF;
            }
            .box {
                background-color: #000033;
                border: 1px solid #000033;
                border-radius: 10%;
                max-height: 300px;
                max-width: 160px;
                padding: 10px;
                position: inherit;
                overflow:auto;  
            }
            .box::-webkit-scrollbar {
                width: 8px;
            }
            .box::-webkit-scrollbar-track {
                background: cornflowerblue;
            }
            .box::-webkit-scrollbar-thumb {
                background-color:darkslateblue;
            }
            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #13092D;
            }
