* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

h1 {
    margin-bottom: .75em;
    text-align: center;
}

body {
    background-color: #ffffff;
}

.app {
    max-width: 960px;
    margin: 0 auto;
}

.game {
    display: flex;
	justify-content: center;
}

.canvas__sorcerer {
    flex: 0 0 auto;
    width: 720px;
    height: 528px;

    background-color: #00f;
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: pixelated;
}

.log {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 240px;
    height: 528px;
    overflow: hidden;
    list-style: none;
    background-color: #000;
    border-left: 1px dashed #fff;
}

.log::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#000, transparent 120px);
    content: '';
}

.log__item {
    padding: 0 25px;

    font-family: monospace;
    line-height: 1.45;
    color: #808080;
}

.log__item em {
    font-style: normal;
    color: #fff;
}

.log__item:last-child {
    background-color: rgb(102, 0, 0);
}

.log__item::before {
    content: '$';
    display: inline-block;
    width: 15px;
    margin-left: -15px;
}

.info {
	font-family: monospace;
	padding: 10px 0;
	text-align: center;
}
