/* Simple reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body style */

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    padding: 20px;
    background-image: url("background.webp");

    /* Full height */

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Container */
.container {
    text-align: center;
    max-width: 600px;
}

/* Heading */
h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Paragraph */
p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Footer link */

a {
    color: #441014 !important;
}

