.header {
    text-align: center;
}

.header h1 {
    font-size: 50px;
}

p, ul, li {
    font-family: "Georgia", serif;
}

h1, h2 {
    font-family: "Georgia", serif;
}

/* ---------------------------------------------------------- */
/* Colors */
/* Light blue (card) rgb(231, 232, 249) */
/* Dark blue (borders) rgb(69, 69, 134) */
/* Intermediate (background) rgb(165, 183, 254) */

/* ---------------------------------------------------------- */

.navbar {
    background-color: rgb(231, 232, 249);
    position: relative;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
    border-radius: 15px;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background: rgb(231, 232, 249);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}

.navbar li {
    display: inline-block;
    position: relative;
}

.navbar li:not(:first-child)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 70%;
    border-left: 4px solid rgb(69, 69, 134);
}

.navbar li a {
    color: black;
    display: block;
    padding: 10px 30px;
    text-decoration: none;
}

.navbar-text {
    margin-left: 4px;
}

.navbar-text:hover {
    background-color: gray;
}

/* ---------------------------------------------------------- */

* {
    box-sizing: border-box;
}

body {
    padding: 10px;
    background: rgb(165, 183, 254);
}

/* Create two unequal columns that float next to each other */
/* Left column */
.leftcolumn {
    float: left;
    width: 35%;
}

/* Right column */
.rightcolumn {
    float: left;
    width: 65%;
    background-color: rgb(165, 183, 254);
    padding-left: 20px;
}

/* Add a card effect for articles */
.card {
    background-color: rgb(231, 232, 249);
    padding: 20px;
    margin-top: 20px;
    border-radius: 15px;
}

/* Clear floats after the columns */
.row::after {
    content: "";
    display: table;
    clear: both;
}

/* Footer */
.footer {
    padding: 20px;
    text-align: center;
    background: rgb(231, 232, 249);
    margin-top: 20px;
    border-radius: 15px;
}

/* -------------------------------------------------------- */

.image-container img {
    display: block;
    border: 4px solid rgb(69, 69, 134);
    margin-left: auto;
    margin-right: auto;
}

.bird-info-container {
}

.bird-info-container ul {
    list-style-type: none;
}

.bird-info-container ul li {
    margin-top: 5px;
}

/* -------------------------------------------------------- */

.license {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 1115px) {
    .leftcolumn, .rightcolumn {
        width: 100%;
        padding: 0;
    }
    .banner-container {
        width: 95%;
        height: 95%;
    }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
    .navbar li a {
        float: none;
        width: 100%;
    }
}