h1 {
    
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: x-large;
    font-weight: 500;
    text-decoration: underline;
}
.godzilla h1{
    color: palevioletred;
    background-color: blue;
}

.mothra h1{
    color: yellow;
    background-color: orange;
}

.king_ghidorah h1{
    color: gold;
    background-color: red;
}
p {
    color: blueviolet;
    text-align: left;
}
a {
    text-align: center;
    text-decoration: underline;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: larger;
}
body {
    color: black;
    font-family: 'Courier New', Courier, monospace;
    font-size: larger;
}
ul {
    text-align: left;
}
table {
    color: red;
    text-align: left;
    border-style: ridge;
    border-color: gray;
}

figure {
    float: right;

    border: 1px solid blueviolet;
    padding: 10px;
    margin: 10px;
}

figure a img {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}

figure a {
    overflow: hidden;
    display: block;
    width: 300px;
    height:300px;
}

nav ul {
    margin:0;
    padding:0;
    list-style-type: none;

    display: flex;
    flex-direction: row;

}
nav ul li {
    margin:0;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 2px solid #000;
}
nav ul li:last-of-type {
    border: none;
    margin:0;
    padding:0;
}

nav ul li a {
    text-decoration: none;
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #000;
}
a:visited {
    color:plum
}

a:hover {
    text-decoration: none;
    background-color: cornflowerblue;
}
a:active {
    color:blueviolet
}
p:first-child {
    font-style: italic;
    font-weight: bolder;
}
img {
    float: right;
}
 