/* Global styles */

* {
    box-sizing: border-box;
    font-family: 'Roboto Slab', serif;
    text-align: center;
}

body {
    background-color: #F4F4F4;
    margin: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

a {
    color: #cc9b32;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Navigation styles */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFFFFF;
    padding: 10px 20px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
}

.nav-logo {
    font-size: 30px;
    font-weight: bold;
    color: #cc9b32;
}

.nav-link {
    font-size: 18px;
    color: #cc9b32;
}

nav a {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    margin-left: 20px;
}

/* About page styles */

.about-container {
    margin-top: 50px;
}

.about-container h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-container p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
}

.about-container ul {
    font-size: 20px;
    margin-bottom: 20px;
}

.about-container li {
    margin-bottom: 10px;
}

.about-container a {
    font-size: 20px;
    font-weight: bold;
    color: #3266CC;
}

.about-container a:hover {
    text-decoration: underline;
}

/* Footer styles */

/* Footer */
footer {
    background-color: #272727;
    color: white;
    text-align: center;
    padding: 20px;
    width: 100%;
    position: fixed;
    bottom: 0;
}

footer p {
    margin: 0;
}