@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');
body {
    font-family: "JetBrains Mono", monospace;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* justify-content: space-between; */
    align-items: center;
    height: 100vh;
    /* min-height: 100vh; */
    margin: 0;
    box-sizing: border-box;
    padding: 4px;
}

header {
    text-align: center;
    position: fixed;
    top: 0;
}
footer {
    text-align: center;
    position: fixed;
    bottom: 0;
}
span{
    color: crimson;
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 2px solid black;
}

.hidden {
    display: none;
}

button {
    padding: 12px 20px;
    font-size: 1rem;
    margin-top: 20px;
    /* background: #007bff; */
    background: crimson;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.options {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.options button {
    background: #eee;
    border: 2px solid #ddd;
    color: #333;
}

.options button:hover {
    background-color: #d0ebff;
}

.info {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 1rem;
}