body, html {
    font-family: 'Comic Sans MS', 'Chalkboard SE', 'Marker Felt', sans-serif;
    background-color: #c0c0c0;
    background-image: url('img/xp1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 0;
    height: 100%;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

header {
    background: linear-gradient(to right, #000080, #a6caf0); 
    color: white;
    padding: 0px 20px; /* Adjust vertical padding for a thinner appearance */
    border-top: 3px solid #ddd;
    border-bottom: none; /* Remove bottom border so it's flush with the content box */
    width: 60%; /* Match width with content box */
    text-align: left;
    margin-bottom: 0;
    border-left: 3px solid #ddd;
    border-right: 3px solid #888;
    font-weight: bold;
    font-size: 0.4em;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #e0e0e0;

    background-image: url('img/xp2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;

    width: 60%; 
    margin-top: 0; 
    border-left: 3px solid #ddd;
    border-bottom: none;
    border-right: 3px solid #888;
    border-top: none;  /* Remove the top border to ensure it sits flush with header */
    align-items: center; 
}

.content p {
    background-color: #f5f5f5; /* Light gray, similar to old text fields */
    padding: 10px; 
    border: 1px solid #7f7f7f; /* Classic gray border */
    box-shadow: inset 1px 1px 2px #000, inset -1px -1px 2px #ddd; /* Inset shadow for a 3D effect */
    width: 100%; /* Ensuring the width takes up the full content container */
    max-width: 600px; /* Optional: A maximum width to prevent the box from becoming too wide on large screens */
    margin-bottom: 20px;
    border-radius: 2px; /* Slight rounding, older styles didn't have much rounding */
}

img {
    max-width: 100%;
    height: auto;
    border: 1px solid #000;
}

footer {
    background: linear-gradient(to right, #000080, #a6caf0);
    background-image: url('img/b3.gif');
    background-repeat: repeat;
    background-size: auto;
    background-attachment: fixed;
    color: white;
    padding: 0px 20px;
    border-top: none; /* Remove this border */
    border-bottom: 3px solid #888;
    border-left: 3px solid #ddd;
    border-right: 3px solid #888;
    width: 60%; /* Match width with content box */
    text-align: center;
    font-weight: bold;
    font-size: 0.4em;
    margin-top: 0; /* Ensure it's flush with the content box */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
}

footer a {
    background-color: #c0c0c0; /* Classic gray color for the button */
    border: 1px solid #7f7f7f;
    padding: 5px 10px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none; /* Remove the underline from the link */
    color: black; /* Set the link text color */
    border-top: 2px solid #eee; 
    border-left: 2px solid #eee; 
    border-bottom: 2px solid #555; 
    border-right: 2px solid #555; 
    transition: 0.2s;
    margin: 0 5px; /* Spacing between the two buttons */
    padding: 10px 15px;
    font-weight: bold;
    font-size: 2em; /* Adjust size as needed */
}

footer a:hover {
    background-color: #a0a0a0; /* Slightly darker gray on hover */
}

a {
    text-decoration: none;
    color: #000080;
    padding: 0 10px;
    border-right: 1px solid #000;
}

a:last-child {
    border-right: none;
}
