/*
 * 1. Random Background Image Setup
 * - Replace the URL below with your actual, desired image link.
 * - The 'cover' and 'fixed' properties ensure it looks good on all screens.
 */
body {
    /* !!! REPLACE THIS URL with your random background image URL !!! */
    background-image: url('https://picsum.photos/1920/1080?random=1');
    background-size: cover; /* Ensures the image covers the entire viewport */
    background-repeat: no-repeat;
    background-attachment: fixed; /* Keeps the background static when scrolling (if content exceeds the screen) */
    background-position: center center;

    /* General page setup */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center; /* Horizontally center content */
    align-items: center; /* Vertically center content */
    min-height: 100vh; /* Make sure the body takes up at least the full viewport height */

    font-family: 'Roboto', sans-serif;
}

/*
 * 2. Content Container Styling
 * - This is the box where your logo, title, and description live.
 */
.landing-page-content {
    text-align: center;
    color: #ffffff; /* White text for contrast against the background */
    
    /* A subtle, dark background to make the text readable over any image */
    background-color: rgba(0, 0, 0, 0.7); /* Black with 70% opacity */
    padding: 40px;
    border-radius: 10px; /* Rounded corners */
    max-width: 600px; /* Limits the width of the content box */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); /* A nice shadow effect */
}

/* * 3. Logo Styling (Middle of the page)
 */
.logo {
    width: 150px; /* Size of the logo */
    height: 150px; 
    border-radius: 50%; /* Makes the logo circular if it's a square image */
    border: 5px solid #fff; /* White border around the logo */
    margin-bottom: 20px; /* Space below the logo */
    display: block; /* Ensures it takes its own line */
    margin-left: auto; /* Centers the block element */
    margin-right: auto; /* Centers the block element */
}

/* * 4. Typography Styling
 */
.title {
    font-size: 3em;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
}

.description {
    font-size: 1.2em;
    font-weight: 400;
    line-height: 1.6;
}