<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html,
body {
    height: 100%;
    overflow: hidden;
}

#dowebok {
    display: flex;
    font-size: 100px;
    justify-content: center;
    align-items: center;
}

#theImage {
    display: flex;
    flex-flow: row wrap;
    height: 400px;
    width: 400px;
    background-repeat: none;
}

#buttons {
    position: absolute;
    bottom: 20px;
}

.prev,
.next {
    width: 64px;
    height: 64px;
    background: no-repeat;
    cursor: pointer;
}

.prev {
    background-image: url(../images/left.png);
}

.next {
    background-image: url(../images/right.png);
}</pre></body></html>