* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #000000;
}

body {
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.text {
    text-align: left;
    max-width: min(100%, 65ch);
    line-height: 1.5;
}

.button-container {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

a.button {
    padding: 12px 24px;
    font-size: 16px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
}

a.button:hover {
    background-color: #333333;
}

a.button:active {
    background-color: #000000;
}
