body {
    background: black;
}

.statement-container {
    padding: 20px;
    background-color: white;
    color: black;
    border: 1px solid #eee;
    border-radius: 20px;
    margin: 20px 0;
    position: absolute;
    text-align: center;
    font-size: 1.2rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: auto;
}

.statement-container h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.statement-container *:link,
.statement-container *:visited {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.statement-container > a {
    display: inline-block;
    margin-top: 20px;
    padding: 20px;
    border-radius: 10px;
    background: black;
    color: white !important;
    font-size: 1.2rem;
    text-decoration: none;
    border: solid 1px;
    transition: color 0.25s linear, background 0.25s linear;
}

.statement-container > a:hover {
    background: white;
    color: black !important;
}

@media (max-width: 1000px) {
    .statement-container {
        width: 100%;
        height: auto;
        padding: 20px;
        position: absolute;
        top: 0;
        left: 0;
        transform: none;
        border-radius: 0px;
    }

    .statement-container h1 {
        font-size: 1.5rem;
    }
}