body {
    margin: 0;
    padding: 0;
    font-family: 'Courier New', monospace;
    background-color: #fff;
    color: #111;
    text-align: center;
}

header {
    padding: 40px 20px 20px;
}

h1 {
    font-size: 2.8em;
    margin-bottom: 10px;
}

.slogan {
    font-style: italic;
    color: #555;
}

.center-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 30px;
}

.king-img {
    width: 300px;
    height: auto;
    margin: 40px auto;
    display: block;
}

.text-block {
    max-width: 300px;
    position: absolute;
}

.text-block.left {
    left: 10%;
    top: 30%;
    text-align: right;
}

.text-block.right {
    right: 10%;
    top: 30%;
    text-align: left;
}

.text-block.bottom {
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
}

footer {
    margin-top: 150px;
    padding: 20px;
}

.buttons a {
    text-decoration: none;
    background: #111;
    color: #fff;
    padding: 10px 25px;
    margin: 10px;
    border-radius: 25px;
    transition: 0.3s;
}

.buttons a:hover {
    background: #555;
}
