body {
    margin: 0;
    min-height: 100vh;
    padding: 40px 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f2;
    color: #1f2933;
    font-family: Arial, Helvetica, sans-serif;
}

main {
    width: 100%;
    max-width: 920px;
    text-align: center;
}

h1 {
    margin: 0 0 18px;
    font-size: 2rem;
    font-weight: 700;
}

img {
    width: 100%;
    max-width: 920px;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.home-button {
    display: inline-block;
    margin-top: 22px;
    padding: 12px 22px;
    border-radius: 8px;
    background: #1f2933;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.home-button:hover {
    background: #344454;
}

.link {
    color: black;
    font-weight: normal;
}