body {
    display         : flex;
    justify-content : center;
    align-items     : center;
    height          : 100vh;
    font-family     : Arial, sans-serif;
    background-color: #f0f0f0;
    margin          : 0;
}

.message {
    text-align: center;
}

h1 {
    font-size    : 36px;
    margin-bottom: 20px;
}

img {
    width        : 100px;
    height       : 100px;
    margin-bottom: 20px;
    background   : #f0f0f0;
    border       : solid #f0f0f0;
}

a {
    display         : inline-block;
    margin-top      : 20px;
    padding         : 10px 20px;
    background-color: #1f7073;
    color           : #fff;
    text-decoration : none;
    border-radius   : 5px;
}

a:hover {
    background-color: #0056b3;
}