html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: Georgia, serif;
    background-color: #1a1a2e;
    color: #eee;
}

h1 {
    color: #ff6b6b;
}

.answers {
    margin: 20px auto 0 auto;
    border-spacing: 10px;
}

.answers td {
    width: 300px;
    height: 80px;
    vertical-align: top;
}

.answers button {
    width: 100%;
    height: 100%;
    padding: 12px 16px;
    font-size: 16px;
    font-family: Georgia, serif;
    background-color: #16213e;
    color: #eee;
    border: 2px solid #e94560;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

.answers button:hover {
    background-color: #e94560;
    transform: scale(1.02);
}

#result button {
    padding: 12px 24px;
    font-size: 16px;
    font-family: Georgia, serif;
    background-color: #e94560;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

#result button:hover {
    background-color: #ff6b6b;
}
