/* styles.css */

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

.landing-page {
    background-image: url('/background_img.jfif');
    height: 100%;
    /*background-position: center;*/
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.overlay {
    background: rgba(0, 0, 0, 0.1); /* Black with transparency */
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content {
	color: Black;
    max-width: 80%;
}

.content h1 {
	font-size: 64px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.content p {
    font-size: 24px;
}
