/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #D2C2AD;
    padding: 20px;

}

main {
    display: block;
    margin: 0 auto;
    max-width: 1000px;
    background-color: #f0ede3;
    border: 1px solid #8B4513;
    border-radius: 15px;
}

/* Header and Footer Styling */
header, footer { 
    text-align: center;
    padding: 10px;
    margin: 20px;
    background: #006400;
    color: #fff;
    border: 1px solid #D2C2AD;
    border-radius: 15px;
}

header h1 {
    font-size: 1.6rem;
}

/* Navigation Styling */
nav {
    display: flex;
    justify-content: center;
    background: #5c4033;
    padding: 10px;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
}

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

/* Content Styling */
section {
    display: block;
    background: #fff;
    padding: 10px;
    margin: 20px;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* unvisited link */
section a {
  color: #006400;
  text-decoration: underline;
}
/* visited link */
section a:visited {
  color: #8B4513;
  text-decoration: underline;
}
/* mouse over link */
section a:hover {
  color: #B22222;
  text-decoration: none;
}

section h2 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

section p {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Right Floated Image Styling */
.rfloat-image {
    display: block;
    float:right;
    min-width: 100px;
    max-width: 150px;
    margin: 0 auto;
    padding: 20px;
}

/* Centered Image Styling */
.centered-image {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    border: 1px solid #5c4033;
    border-radius: 15px;
}