html, body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #e0ffa8;
    font-family: courier new;
    color: #4da714;
}

.page {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

button {
    font-family: courier new;
    margin-top: 20px;
    padding: 5px 14px;
    cursor: pointer;
    border: none;
    background-color: #61c821;
    color: #ffffd3;
    border-radius: 6px;
    font-size: 11px;
}

input[type="submit"]:hover {
    background-color: #4da714;
}

p {
    font-size: 16px;
    width: 430px;
}