

        /* Reset some default browser styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* Header styles */
        header {
            background-image: url('images/background.png');
            background: #333;
            color: #fff;
            padding: 1rem;
            text-align: center;
        }

        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
        }

        nav ul li {
            margin-right: 1rem;
        }

        nav ul li a {
            color: #fff;
            text-decoration: none;
            padding: 0.5rem;
            transition: background 0.3s;
        }

        nav ul li a:hover {
            background: #555;
            border-radius: 4px;
        }
		.box {
      flex: 1; /* Makes each div take equal space */
      padding: 20px;
      background-color: lightblue;
      text-align: center;
      border: 1px solid #000;
    }

        /* Main content styles */
        main {
            flex: 1;
            padding: 1.5rem;
            background: #f4f4f4;
        }
     .flex-container {
    display: flex;
}
.flex-child {
    flex: 1;
    border: 1px solid grey;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}  
.flex-child:first-child {
    margin-right: 20px;
}  

        /* Footer styles */
        footer {
            background: #333;
            color: #fff;
            text-align: center;
            padding: 1rem;
        }

       .container {
        display: flex;              /* Enables side-by-side layout */
        min-height: 100vh;          /* Full height of the viewport */
    }

    /* Left navigation panel */
    .nav {
        width: 220px;               /* Fixed width for navigation */
        background-color: #2c3e50;  /* Dark background */
        color: white;
        padding: 20px;
        box-sizing: border-box;
    }

    /* Right content area */
    .content {
        flex: 1;                    /* Take remaining space */
        background-color: #ecf0f1;  /* Light background */
        padding: 20px;
        box-sizing: border-box;
    }

    /* Example navigation links */
    .nav a {
        display: block;
        color: white;
        text-decoration: none;
        margin: 10px 0;
    }

    .nav a:hover {
        text-decoration: underline;
    }