* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    cursor: default;
}
body {
    background-image: url(dazai/background.jpg);
    line-height: 1.3;
    font-family: sans-serif;
    font-size: 12px;
    color: white;
}
.container {
    background-color: black;
    border: white solid;
    border-width: 0 1px;;
    width: 700px;
    margin: 50px auto;
    padding: 10px;
}

#top, #bottom {
    background-image: url(dazai/top.png);
    background-repeat: repeat;
    height: 19px;
    margin: -10px;
}
#top {
    margin-bottom: 5px;
}
#bottom {
    rotate: 180deg;
    margin-top: 5px;
}

header {
    background-image: url(dazai/dark.jpg);
    background-position: center;
    background-color: grey;
    border: 1px white solid;
    height: 100px;
}

nav {
    margin: 5px 0;
    display: flex;
    justify-content: space-evenly;
}
nav button {
    background-color: white;
    background-clip: padding-box;
    border: 6px transparent solid;
    border-image: url(dazai/bumpborder.png) 8 round;
    width: 100px;
}

main {
    
}
main p:not(:last-child) {
    margin-bottom: 10px;
}

#left {
    margin-right: 10px;
    float: left;
}