/* Basic body and layout adjustments */
body {
    font-family: Arial, sans-serif;
    background-color: #fef1f3; /* Light pink background */
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Page title */
h1 {
    color: #d8587e; /* Warm rose */
    font-size: 32px;
    margin: 10px;
    margin-bottom: 30px;
    border-bottom: 3px solid #d8587e;
    padding-bottom: 10px;
}

/* Buttons container */
.buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

/* Button column */
.button-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Column header style */
.button-column h2 {
    font-size: 24px;
    margin: 0;
    color: #d8587e;
    font-weight: bold;
}

/* General button styles */
button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    padding: 12px 24px;
    width: 100px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    text-align: center;
}

/* Button colors */
.truth-button { background-color: #f7b8c2; color: #3d3d3d; }
.dare-button { background-color: #f4978e; color: #3d3d3d; }
.wyr-button { background-color: #f9a7a1; color: #3d3d3d; }

/* Reset button styling */
.reset-button {
    background-color: #e57373;
    color: white;
    font-weight: bold;
    margin: 20px 0; /* Space between reset button and other elements */
}

/* Centered question display box */
#questionDisplay {
    margin-top: 20px;
    background-color: #8c4658;
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    max-width: 700px;
    width: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}






















   



