        /* stylesheet for my website */

        @font-face {
            font-family: DonauNeue;
            src: url(font/DonauNeue_Uppercase.otf);
        }

        @font-face {
            font-family: Handelson;
            src: url(font/zhandelson-three.otf);
        }

        body {
            background-color: whitesmoke;
            font-family: Arial, Helvetica, sans-serif;
            /* prevents the footer from covering the text at the bottom*/
            padding-bottom: 40px; 
        }

        h1 {
            text-align: center;
            text-transform: uppercase;
            font-family: DonauNeue;
            font-size: 64px;
        }

        h2 {
            text-align: center;
            font-family: Handelson;
            font-size: 42px;
        }

        p {
            margin-left: 10%;
            margin-right: 10%;
        }

        /* Using example from W3Schools page to build */
        /* This will need to be customized for final. */

        /* The navigation menu */
        .navbar {
            overflow: hidden;
            background-color: #333;
            font-family: DonauNeue;
            text-transform: uppercase;
            width: 100%;
        }

        /* Navigation links */
        .navbar a {
            float: left;
            font-size: 16px;
            color: whitesmoke;
            text-align: center;
            padding: 14px 16px;
            text-decoration: none;
        }

        /* The subnavigation menu */
        .subnav {
            float: left;
            overflow: hidden;
        }

        /* Subnav button */
        .subnav .subnavbtn {
            font-family: DonauNeue;
            text-transform: uppercase;
            font-size: 16px;
            border: none;
            outline: none;
            color: whitesmoke;
            padding: 14px 16px;
            background-color: inherit;
            font-family: inherit;
            margin: 0;
        }

        /* Add a red background color to navigation links on hover */
        .navbar a:hover,
        .subnav:hover .subnavbtn {
            background-color: red;
        }

        /* Style the subnav content - positioned absolute */
        .subnav-content {
            display: none;
            position: absolute;
            left: 0;
            background-color: red;
            width: 100%;
            z-index: 1;
        }

        /* Style the subnav links */
        .subnav-content a {
            float: left;
            color: whitesmoke;
            text-decoration: none;
        }

        /* Add a grey background color on hover */
        .subnav-content a:hover {
            background-color: #eee;
            color: black;
        }

        /* When you move the mouse over the subnav container, open the subnav content */
        .subnav:hover .subnav-content {
            display: block;
        }

        .center {
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

        .header img {
            width: 600px;
            height: 600px;
        }

        .species-container {
            display: flex;
            margin: 20px 10%;
            gap: 20px;
            min-width: 600px;
        }

        .species-left {
            flex: 1;
            max-width: 50%;
            min-width: 250px;
        }

        .species-left img {
            width: 100%;
            height: auto; 
            margin-bottom: 10px;
        }

        .species-right {
            flex: 1;
            min-width: 250px;
        }

        .species-right ul {
            list-style-position: inside;
        }

        .species-right audio {
            width: 100%;
        }

        .species-left,
        .species-right {
            max-width: 100%;
            min-width: auto;
        }

        .indent {
            padding-left: 50px;
            font-family: DonauNeue;
            font-weight: bold;
            font-size: larger;
            text-transform: uppercase;
        }

        .credit {
            float: left;
        }
        
        .version {
            float: right;
        }

        .footer {
            background-color: whitesmoke;
            width: 100%;
            position: fixed;
            font-size: 75%;
            bottom: 0px;
            z-index: 10;
        }