/*
CSS Document used for the Homework 5 assignment
Author: Manny McCullom
Course: ITWP 1000
File: styles.css
*/

/* Variable declarations */
:root
{
    /* Page Colors */
    --colorPrimary: white;
    --colorSecondary: black;

    /* Preset Horizontal Line Element Styles */
    --hrPrimary: solid var(--colorPrimary);
    --hrSecondary: solid var(--colorSecondary);

    /* Page Width */
    --contentWidth: 50%;
}

h1{
    text-align: center;
}

.fontColorPrimary
{
    color: var(--colorPrimary);
}

.fontColorSecondary
{
    color: var(--colorSecondary);
}

.hrPrimary
{
    border: var(--hrPrimary);
}

.hrSecondary
{
    border: var(--hrSecondary);
}

#validation
{
    font-size:x-large;
    text-align: center;
}

.poem
{
    font-size: x-large;
    text-align: center;
}