/*
Style/formatting file for pangolin webpage pt 3
Taylor Jones
2/17/25
*/
body {
    background-color: black;
}

h1,
h2,
h3,
title {
    color: silver;
}

p {
    color: white;
    max-width: 1000px;
}

img {
    max-width: 500px;
    height: auto;
}

figure {
    display: table;
}

figcaption {
    color: white;
    display: table-caption;
    caption-side: bottom;
}

a:link {
    color: dodgerblue;
}

a:visited {
    color: lightblue;
}

li {
    color: white
}

hr {
    color: darkgray;
}

video {
    max-width: 500px;
}

.parent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}