/* 
 Module 6 Assignment:Animal Page (Pangolin) cont
 Taylor Jones
 2/24/2025
*/
head,
body {
    background-color: black;
    font-family: 'Courier New', Courier, monospace;
    max-width: 1000px;
    margin: auto;
}

.navbutton {
    border: 2px solid white;
    border-radius: 10px;
    text-decoration: none;
    padding: 5px;
}

.navbutton:hover {
    background-color: white;
    color: black;
    font-weight: bolder;
}

div {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 3px solid white;
    border-top: 3px solid white;
}

.header {
    border-top: unset;
    border-bottom: unset;
    max-height: 75px;
}

h1,
h2,
h3,
title {
    color: silver;
    border: 2px solid white;
    border-radius: 10px;
    padding: 5px;
    text-align: center;
}

p {
    color: white;
    max-width: 100%;
    padding: 20px;
}

li span,
p span {
    color: yellow;
    font-weight: bolder;
}

#email {
    font-style: italic;
    font-weight: bolder;
    text-decoration: none;
    border: 2px dotted white;
    border-radius: 10px;
    padding: 5px;
}

#email:hover {
    background-color: yellow;
    color: black;
}

img {
    max-width: 100%;
    height: auto;
    border: 2px solid white;
}

figure {
    display: table;
    margin: auto;
}

figcaption {
    color: white;
    display: table-caption;
    caption-side: bottom;
}

a:link {
    color: dodgerblue;
}

a:visited {
    color: lightblue;
}

li {
    color: white
}

video {
    max-width: 500px;
    border: 2px solid white;
}

audio {
    border: 2px solid white;
}

.parent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}