html {
    font-size: 100%;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    font-family: 'Arial', 'Verdana', sans-serif; 
    color: #2d2d2d; 
    background: #f5f7fa; 
    margin: 0;
    line-height: 1.6;
}


#container {
    margin: 2rem auto;
    max-width: 800px; 
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); 
    overflow: auto;
}

/* Headings */
h1 {
    font-family: 'Georgia', serif;
    font-size: 2.5rem; 
    margin: 0 0 1rem 0;
    padding: 0;
    text-align: center;
    color: #1a3c34;
}

h2 {
    font-family: 'Georgia', serif;
    font-size: 1.75rem;
    margin: 1.5rem 0 0.75rem 0;
    color: #1a3c34;
}


p, li {
    font-size: 1.125rem; 
    line-height: 1.6;
}


p {
    text-align: center;
}

ul {
    list-style-type: none;
    padding: 0;
}


ul li {
    margin: 0.75rem 0;
}

ul li a {
    display: block;
    padding: 0.75rem;
    background: #ffffff; 
    border: 1px solid #e0e0e0; 
    border-radius: 6px;
    text-align: center;
    transition: all 0.2s ease; 
}

ul li a:hover {
    background: #f8f9fa; 
    border-color: #b0b0b0;
    color: #0066cc; 
}

#container ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e5e5; 
}

#container ul li:last-child {
    border-bottom: none;
}

/* Links */
a {
    color: #005566; 
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #0066cc; 
    text-decoration: underline;
}

p a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    transition: all 0.2s ease;
}

p a:hover {
    background: #f8f9fa;
    border-color: #b0b0b0;
    text-decoration: none; 
}

@media (max-width: 800px) {
    body {
        background: #ffffff;
    }

    #container {
        margin: 0;
        width: 100%;
        padding: 1.5rem;
        border-radius: 0; 
        box-shadow: none; 
    }

    h1 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p, li {
        font-size: 1rem;
    }

    ul li a {
        padding: 0.6rem;
    }

    p a {
        padding: 0.6rem 1.2rem;
    }
}