:root{
    --main-color:green;
    --secondary-color:antiquewhite;
    --font-family-h1-h2-h3:Cambria, Cochin, Georgia, Times, Times New Roman, serif;
    --font-family-h4-p:Arial, Helvetica, sans-serif;

}

body
{
    background-color: var(--secondary-color);
}

header
{
    font-family: var(--font-family-h1-h2-h3);
    color: var(--main-color);

}

h2
{
    border-top: 50px;
    font-family: var(--font-family-h1-h2-h3);
    color: var(--main-color);
}

p
{
    font-family: var(--font-family-h4-p);
}

h3
{
    color: var(--main-color);
    font-family: var(--font-family-h1-h2-h3);
}

img
{
    height: 300px;
}

table
{
    border: solid green 3px;
    background-color: lightgreen;
    text-align: center;
    border-color: green;
    font-family: var(--font-family-h4-p);
}

footer
{
    font-size: large;
}

a
{
    color: var(--main-color);
}