
/* Base styling for the Brouillon Général website */
body {
    font-family: 'Times New Roman', serif;
    background-color: #1c1c1c;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
}

h1 {
    font-family: 'Garamond', serif;
    font-size: 3rem;
    text-align: center;
    margin-top: 50px;
}

header {
    background-color: #333;
    padding: 20px;
}

.bubble {
    font-family: 'Courier New', Courier, monospace;
    background: #333;
    border: 5px solid #e0e0e0;
    padding: 20px;
    border-radius: 10px;
    margin: 20px;
    position: relative;
}

.bubble:before {
    content: '🌹';
    position: absolute;
    top: -15px;
    left: 10px;
}

.bubble:after {
    content: '🌹';
    position: absolute;
    bottom: -15px;
    right: 10px;
}

footer {
    text-align: center;
    background-color: #333;
    color: #e0e0e0;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}
