* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: 'Outfit', sans-serif;
}

/* Main container with background image */
.container {
    position: relative; /* Ensure positioning context for pseudo-element */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    background-image: url('https://app.dorraresale.org/dorra-calligraphy-cropped-for-api-res.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: black;
}

.container::before {
    content: ""; /* Required to display the pseudo-element */
    position: absolute; /* Position relative to the container */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.77);
    z-index: 1;
}

.header, .footer {
    position: relative;
    z-index: 1; /* Ensures content is on top of the overlay */
}

/* Header styling */
.header {
    text-align: center;
    padding: 100px 20px;
    /* color: #000000; */
    color: #ffffff;
}

/* Inverted logo styling */
.logo {
    width: 210px;
    /* filter: invert(1); */
    margin-bottom: 50px;
    /* margin-top: 30px; */
}

/* Welcome and description text */
.header h1 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.header p {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer styling */
.footer {
    background-color: black;
    padding: 25px 0;
    text-align: center;
}

.address {
	font-size: 0.65rem;
    max-width: 600px;
    margin: 0 auto;
	color: #ffffff;
}

.footer img {
    width: 150px;
}