/* Global styles for the document */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #CCECE6;
    color: black;
}


/* Styles for the header element */

header {
    background-color: #CCECE6;
    color: black;
    text-align: center;
    padding: 1em;
    font-family: Arial, sans-serif;
}


/* Styles for the nav element */

nav {
    background-color: #509387;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav li {
    margin-right: 15px;
}

nav a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 10px;
}


/* Styles for the #wrapper ID */

#wrapper {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
}


/* Styles for the .container class */

.container {
    display: flex;
    padding: 20px;
}


/* Styles for the .small-column class */

.small-column {
    flex: 1;
    padding: 20px;
    border: 1px none;
    margin: 10px;
    width: 30%;
    color: black;
}


/* Styles for the .large-column class */

.large-column {
    flex: 2;
    padding: 20px;
    border: none;
    margin: 10px;
    color: black;
}


/* Styles for the footer element */

footer {
    background-color: none;
    color: black;
    text-align: center;
    padding: 1em;
    position: fixed;
    bottom: 0;
    width: 100%;
}


/* Styles for the img element */

img {
    max-width: 100%;
    /* Make the image responsive within its container */
}


/* Media queries for responsive design */

@media (max-width: 992px) {
    .small-column {
        width: 100%;
        /* Center column within CSS grid at 992px breakpoint */
    }
}

@media (max-width: 768px) {
    .small-column,
    .large-column {
        width: 100%;
        /* Center column within CSS grid at 768px and below */
    }
}