/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Header styles */
header {
    background-image: url('stars.jpg'); /* Make sure this image exists */
    background-size: cover;
    background-position: center;
    color: white;
    padding: 20px;
    text-align: center;
}

header h2, header p {
    color: white;
}

/* Main content layout */
main {
    display: flex;
    width: 100%;
}

/* Navigation styles - MOVED TO LEFT */
nav {
background-color: #008080;
    width: 25%; /* Approximately 1/3 of the remaining space */
    padding: 20px;
    order: 1; /* Nav now on left */
}

nav ul {
    list-style-type: none;
}

nav li {
    margin-bottom: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 8px;
    transition: background-color 0.3s;
}

nav a:hover {
background-color: blue;}  


/* Main content area */
.content {
    width: 75%; /* Takes up remaining space */
    padding: 20px;
    order: 2; /* Content now on right */
}

.content h1 {
    margin-bottom: 15px;
}

.content p {
    margin-bottom: 15px;
}

/* Three columns section */
.columns {
    display: flex;
    width: 100%;
    background-color: lightblue;
}

.column {
    flex: 1;
    padding: 20px;
    border: 1px solid #ccc;
}

.column h3 {
    margin-bottom: 10px;
}

/* Footer styles */
footer {
    background-color: darkblue;
    color: white;
    text-align: center;
    padding: 20px;
    clear: both;
}