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

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.content {
    text-align: center;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}

.centered-image {
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 5px;
}

.centered-text {
    font-size: 1.2em;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

.centered-copy {
    font-size: 0.9em;
    line-height: 1.5;
    color: #666;
    margin: 0 90;
}

.centered-copy a {
	color: #009C41;
}

.centered-copy a:hover {
	color: #666;
	text-decoration: none;
}
