/* Reset some default browser styles */
* {
    xmargin: 0;
    xpadding: 0;
    box-sizing: border-box;
}

/* Set a base font size and family for the whole document */

body {
	font-family:"Times New Roman", serif; 
    font-size: 16pt;
    line-height: 1.3;
    color: #333;
    xbackground-color: #f4f4f4;
    background-color: #ffffff;
    padding: 20px;
}

p {
	font-family:"Times New Roman", serif; 
	font-style: normal; 
    font-size: 16pt;
	font-weight: 100; 
    xline-height: 1.5;
    color: #000000;
    background-color: #ffffff;
    xpadding: 20px;
}

/* Style for main content wrapper */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Header styles */
header {
    background-color: #0033aa;
    color: white;
    padding: 20px 0px;
    text-align: center;
	
}
header h1 {
	margin: 0;
    font-size: 2em;
}

header a{
	color: #fafafa;
}
}
header a:hover{
	color: #00fafa;
}


/* Navigation styles */
nav {
    margin: 20px 0;
    background-color: #333;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    display: block;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #007bff;
}

/* Main content styles */
main {
    margin: 20px 0;
}

main h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

main p {
    margin-bottom: 15px;
}

/* Footer styles */
footer {
    background-color: #ffffff;
    xcolor: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}


.divbox {
  width: 80%; /* Resizes as screen shrinks, up to the max-width */
  max-width: 800px; /* Will not get wider than 800px */
  margin: 0 auto; /* Centers the block */
  padding:10px;
  background-color: #DBB39F;
  color: #000000;
  box-sizing: border-box;
}

.divbox2 {
  width: 80%; /* Resizes as screen shrinks, up to the max-width */
  max-width: 800px; /* Will not get wider than 800px */
  margin: 0 auto; /* Centers the block */
  padding:10px;
  background-color: #ffeeb9;
  color: #000000;
  box-sizing: border-box;
}



/* Responsive design for smaller screens */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin-bottom: 10px;
    }

    header h1 {
        font-size: 2em;
    }
}