/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Merriweather', serif;
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Container for the content */
main {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 20px;
    overflow: auto;
}

h1 {
	text-align: center;
    font-size: 2.0rem;
    margin-bottom: 20px;
    font-family: 'Merriweather', serif;
}

h2 {
	text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: 'Merriweather', serif;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
	text-indent: 20px;
}

.center {
    text-align: center;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 200px;
    background-color: #333;
}

.menu {
    list-style-type: none;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu li {
    text-align: center;
}

.menu li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.menu li a:hover {
    background-color: #555;
}

/* Footer styling */
footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #666;
}

.content ul, ol {
	list-style-position: inside;
	font-size: 1.1rem;
	list-style-position: outside;
    padding-left: 20px; 
    margin: 20px 0; 
}

.content li {
	list-style-position: inside;
    font-size: 1.1rem;
    padding: 15px 20px; 
    background-color: #ffffff; 
    border: 0px;
    border-radius: 8px; 
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content a {
    text-decoration: none;
    color: #333;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.content a:hover {
    color: #000;
    border-bottom: 2px solid #000;
}

.content a:active {
    color: #555;
    border-bottom: 2px solid #555;
}

.i4 {
	color: #000;
    font-size: 14pt;
    font-weight: 700;
    text-indent: 6em;
}
.i3 {
	margin-top: 10px;
	color: #000;
    font-size: 16pt;
    font-weight: 700;
	text-indent: 3em;
}
.i2 {
	margin-top: 30px;
	color: #000;
    font-size: 18pt;
    font-weight: 700;
}

.list {
    display: flex;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 10px 20px;
	box-sizing: border-box;
}

.list a {
    background-color: #000000;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.list a:hover {
    background-color: #444444;
}

/* Responsive design */
@media (max-width: 1280px) {
    header {
        width: 100%;
        height: auto;
    }

    .menu {
        flex-direction: row;
        justify-content: space-around;
    }

    main {
        margin: 70px 0;
        padding: 10px;
    }

    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .menu li a {
        font-size: 1rem;
        padding: 5px;
    }

    main {
        padding: 10px;
        max-width: 100%;
    
