* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
    background-color: #1e2022; /* dark background */
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff; /* white text */
}

h1 {
    font-size: 4em;
    color: #00b8d4; /* cool teal tone */
}

h2 {
    font-size: 2em;
    color: #ffa726; /* warm accent tone */
    margin-top: 10px;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/landing-page-image.png'); /* replace with actual image path */
    background-size: cover;
    background-position: center;
    opacity: 0.25; /* light overlay */
    z-index: 1;
}