
/* My own edits to navigate back to website */
#return {
    color: black;
    /* text-decoration: underline; */
    font-weight: bold;
}

/* Reset some default styles */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Set the background color */
body {
    background-color: #6AB04A; /* Green color */
    font-family: Arial, sans-serif;
}

/* Style the header */
header {
    background-color: #4E8A25; /* Dark green color */
    color: white;
    text-align: center;
    padding: 20px;
}

/* Style the navigation menu */
nav ul {
    background-color: #4E8A25; /* Dark green color */
    list-style-type: none;
    text-align: center;
    padding: 10px;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* Style the sections */
section {
    padding: 20px;
    margin: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    border-radius: 10px;
}

/* Style the cat images */
.cat-image {
    text-align: center;
    margin: 20px;
}

.cat-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* Style the footer */
footer {
    background-color: #4E8A25; /* Dark green color */
    color: white;
    text-align: center;
    padding: 10px;
}
