/* Define the color palette in the root */
:root {
    --primary-color: #8f4eb8;
    --secondary-color: #2a3364;
    --accent-color: #f1c49c;
    --background-color: #86c6b6;
    --text-color: #0b1215; /* obsidian */
    --text-color-white: #f8f8ff; /* ghost white */
}


@font-face {
    font-family: "pricedown";
    src: url("react/pricedown.ttf");
}


/* Body styles */
body {
    font-family: garamond, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* Full viewport height */
}

/* Header container for h1 and h2 */
.header {
    text-align: center;
    margin-bottom: 40px; /* Space between header and buttons */
}

.header h1 {
    font-size: 5em;
    margin: 0;
    margin-bottom: 10px;
    font-family: pricedown, garamond, sans-serif;
    color: var(--accent-color);
    -webkit-text-stroke: 4px var(--secondary-color);
}

.header h2 {
    font-size: 1.5em;
    margin: 0;
    color: var(--secondary-color);
}

/* Container for buttons */
.container {
    display: flex;
    gap: 20px;
}

/* Option button styles */
.option {
    flex: 1;
    background-color: var(--primary-color);
    color: var(--text-color-white);
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none; /* Removes underline from links */
}

.option:hover {
    background-color: var(--accent-color);
}

.option h2 {
    margin: 0 0 10px;
}

.option p {
    margin: 0;
}