/* 
 Module 7 Assignment:Animal Page (Pangolin) cont
 Taylor Jones
 3/3/24
*/

@import url('https://fonts.googleapis.com/css2?family=Bowlby+One+SC&family=Bungee&family=Caudex&display=swap');

body {
    background-color: #212121;
    max-width: 1000px;
    margin: auto;
}

.navbutton {
    border: 2px solid white;
    border-radius: 10px;
    text-decoration: none;
    padding: 5px;

    font-family: "Bowlby One SC", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.navbutton.top {
    margin-left: 15px;
}

.navbutton:hover {
    background-color: white;
    color: black;
}

div {
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 75px;
}

#top {
    background-color: #263238;
    border: 2px solid white;
    padding: 10px;
}

h1,
h2,
h3,
title {
    color: white;
    border: 2px solid white;
    border-radius: 10px;
    padding: 5px;
    text-align: center;

    font-family: "Bungee", sans-serif;
    font-weight: 400;
    font-style: italic;
}

p {
    color: white;
    padding: 10px;

    font-family: "Caudex", serif;
    font-weight: 400;
    font-style: normal;
    font-size: large;
}

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;
    text-align: center;
    padding-top: 10px;
}

a:link {
    color: white;
}

a:visited {
    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;
}