body {
    font-family: sans-serif;
    background-color: #faf8f8;
    display: flex;
    justify-content: center;
    padding-top: 50px;
    margin: 0;
}
.container {
    background-color: rgb(155, 2, 117);
    padding: 2rem 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 600px;
    text-align: center;}

 #visitor-text {
    font-size: 0.9em;
    color: #eaf2f3;
    margin-bottom: 25px;}

    hr { border: none; border-top: 1px solid #ecf0f1; margin: 25px 0; }
h2 { color: #34495e; margin-bottom: 15px; }
.options-container { display: flex; justify-content: center; gap: 15px; margin-top: 20px; }
button { background-color: #3498db; color: white; border: none; padding: 12px 24px; border-radius: 8px; font-size: 16px; cursor: pointer; transition: all 0.2s ease; }
button:hover:not(:disabled) { background-color: #2980b9; transform: translateY(-2px); }

