html, body {
    font-family: "Arial", sans-serif;
    margin: 0;
    background-color: #075973;
    color: #FFFFFF;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    line-height: 150%;
}

a {
    color: #FFFFFF;
}

a:hover {
    color: #FFFFFF;
}

.content {
    padding: 64px 12px;
    max-width: calc(100% - 24px);
}

.info {
    text-align: center;
}

h1 {
    font-size: 28px;
}

img {
    width: 100%;
    margin-bottom: 20px;
}

strong {
    display: block;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    html, body {
        font-size: 20px;
    }

    .content {
        max-width: 500px;
    }
}