* {
    margin: 0;
    padding: 0;
    cursor: default;
}
body {
    background-image: url(images/dottedpinkgrid.jpg);
    font-family: monospace;
    font-size: 13px;
}
.container {
    max-width: 900px;
    margin: 70px auto;
}
a {
    cursor: pointer;
}

/* HEADER */

header {
    background-image: url(images/yuimio.gif);
    background-size: 100%;
    background-position: center;
    border: 1px hotpink solid;
    margin-left: 210px;
    margin-bottom: 5px;
    padding: 60px 0 10px 20px;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: -6px;
}

/* MAIN */

main {
    height: 518px;
    display: flex;
    column-gap: 5px;
}

.header {
    background-image: linear-gradient(hotpink 60%, pink);
    box-shadow: 0 0 5px rgba(255,255,255,0.5) inset;
    border-bottom: 1px hotpink solid;
    padding: 3px 5px;
    font-weight: bold;
    color: white;
}

/* LEFT */

.left {
    background-color: lightgoldenrodyellow;
    border: 1px hotpink solid;
    width: 200px;
    padding: 10px;
}

#pfp {
    border: 1px hotpink solid;
    width: 180px;
}

#info {
    background-color: #bfd6bf;
    border: 1px hotpink solid;
    margin: 10px 0;
}
#info table {
    border-collapse: separate;
    border-spacing: 3px;
}
#info td {
    background-color: white;
    width: 80px;
    padding: 3px;
}
#info td:first-child {
    font-weight: bold;
}

/* CENTER */

.center {
    background-color: lightgoldenrodyellow;
    border: 1px hotpink solid;
    width: 500px;
    padding: 10px;
    overflow-y: scroll;
}
.devide {
    background-color: #bfd6bf;
    margin: 10px 0;
    padding: 5px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: white;
}

#hello {
    background-color: #abc2d6;
    background-image: repeating-linear-gradient(
        45deg, 
        transparent, 
        transparent 10px, 
        rgba(255, 255, 255, 0.2) 10px, 
        rgba(255, 255, 255, 0.2) 20px), 
        repeating-linear-gradient(
            -45deg, transparent, 
            transparent 10px, 
            rgba(255,255,255,0.4) 10px, 
            rgba(255,255,255,0.4) 20px);
    border: 1px hotpink solid;
    margin-bottom: 10px;
    padding: 20px;
}
#hello .inner {
    background-color: white;
    border: 1px hotpink solid;
    height: 200px;
    padding: 10px;
    overflow-y: auto;
}
#hello .inner p:not(:last-child) {
    margin-bottom: 7px;
}

#disnlikes {
    display: grid;
    column-gap: 5px;
    grid-template-columns: auto auto auto;
}
#disnlikes .table {
    background-color: #bfd6bf;
    border: 1px hotpink solid;
    width: 146px;
}
#disnlikes .table ul {
    list-style: none;
}
#disnlikes .table li {
    background-color: white;
    margin: 3px;
    padding: 3px;
}

#quizresults {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 5px;
}
#quizresults img {
    width: 100%;
}
#quizresults a {
    cursor: pointer;
}
#quizresults a:not(:last-child) img, #quizresults img:not(:last-child) {
    margin-bottom: 5px;
}

/* RIGHT */

.right {
    background-color: lightgoldenrodyellow;
    border: 1px hotpink solid;
    width: 200px;
    padding: 10px;
}

#journal {
    background-color: white;
    border: 1px hotpink solid;
}
#journal li {
    margin: 5px;
    list-style: none;
}
#journal li:first-child span::after {
    content: url(images/graphics/pixels/new.gif);
}
#journal span {
    font-weight: bold;
}

#directory {
    margin: 10px 0;
}
#directory button {
    width: 100%;
}
#directory a:not(:last-child) button {
    margin-bottom: 5px;
}

/* END */

::-webkit-scrollbar {
    width: 7px;
}
::-webkit-scrollbar-track {
    background: white;
}
::-webkit-scrollbar-thumb {
    background: #abc2d6;
}