body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background: url('/assets/forest-lowerres.jpg') no-repeat center center fixed;
    background-size: cover;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(244, 244, 244, 0.9);
    padding: 10px;
}

header h1 {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 10px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.begin-section {
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    margin: 20px auto;
    width: 70%;
    border-radius: 10px;
}

.begin-section h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.begin-section p {
    font-size: 1.2em;
}



.content {
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    margin: 20px auto;
    width: 70%;
    border-radius: 10px;
}

.content h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.content p {
    font-size: 1.2em;
}

.example-section {
    text-align: left;
    margin-top: 10px;
}

.example-section img {
    max-width: 100%;
    height: auto;
    margin-top: 10px;
}