/* styles.css */

body {
    /* Background Image */
    background-image: url('images/nature_sunset.jpg'); 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* General container for the page content */
.container {
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    background-color: rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Heading within the container */
.container h1 {
    text-align: center;
    margin-bottom: 20px;
}

/* Paragraph within the container */
.container p {
    line-height: 1.6;
}

/* Styles for the boxes */
.box {
    margin: 20px 0;
    padding: 20px;
    border: 2px solid #000000;
    border-radius: 5px;
    background-color: rgba(206, 195, 195, 0.48);
    box-sizing: border-box;
    width: 100%;
    height: auto;
    display: block;
}

/* Specific styles for the second box */
#box2 {
    width: 70%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    border-color: #000000;
    background-color: rgba(219, 219, 210, 0.58);
}