﻿.container {
    width: 450px;
    padding: 20px;
    margin-top: 80px;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

h1 {
    text-align: center;
}

.question {
    font-weight: bold;
    margin-bottom: 10px;
}

.options {
    margin-bottom: 20px;
    padding-left: 35%;
    text-align:left;
}

.option {
    display: block;
    margin-bottom: 10px;
}

.button {
    display: inline-block;
    padding: 8px 40px;
    background: linear-gradient(to bottom, #000000 0%, #000000 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
    margin-right: 10px;
}

    .button:hover {
        background-color: #3071a9;
    }

.result {
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
}

.hide {
    display: none;
}
.separator {
    display: flex;
    align-items: center;
    text-align: center;
    width: 200px;
    color: black;
}

    .separator::before,
    .separator::after {
        content: '';
        flex: 1;
        border-bottom: 1px dashed black;
    }

    .separator:not(:empty)::before {
        margin-right: .25em;
    }

    .separator:not(:empty)::after {
        margin-left: .25em;
    }
