@import url('https://fonts.googleapis.com/css2?family=PT+Sans&family=Playfair+Display&family=Satisfy&display=swap');

*{
    margin: 0px;
    padding: 0px;
}

body{
    margin-bottom: 47px;
}

header{
    background-color: #c22121;
    color: azure;
    font-family: 'Satisfy', cursive;
    font-size: 25px;
    text-align: center;
    padding-bottom: 3px;
    padding-top: 3px;
}

a:link{
    color: azure;
    text-decoration: none;
}
a:visited{
    color: azure;
    text-decoration: none;
}
a:hover{
    color: cornflowerblue;
    text-decoration: underline;
}
a:active{
    color: blue;
    text-decoration: underline;
}

nav{
    background-color: #8e1717;
    color: azure;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
    padding-bottom: 12px;
}

h2{
    color: black;
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    text-align: center;
    padding-bottom: 5px;
}

h3{
    color: black;
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    text-align: center;
    padding: 5px;
    margin-bottom: 10px;
}

h4{
    color: black;
    font-family: 'PT Sans', sans-serif;
    font-size: 24px;
    padding-left: 7px;
    padding-top: 5px;
    padding-bottom: 5px;
}

h5{
    color: black;
    font-family: 'PT Sans', sans-serif;
    font-size: 20px;
    padding-left: 7px;
    padding-top: 5px;
    padding-bottom: 5px;
}

p{
    color: black;
    font-size: 18px;
    padding-left: 7px;
    font-family: 'PT Sans', sans-serif;
}

p a:link{
    color: blue;
}
p a:visited{
    color: blue;
}
p a:hover{
    color: blue;
}
p a:active{
    color: darkblue;
}

img{
    justify-content: center;
    display: block;
    margin: 0 auto;
    padding-top: 10px;
    padding-bottom: 5px;
    width: 20%;
}

ul{
    color: black;
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    padding-left: 7px;
}

ol{
    color: black;
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    padding-left: 20px;
}

li{
    padding-top: 5px;
    padding-bottom: 5px;
}

footer{
    background: #8e1717;
    color: azure;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    padding: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

p.award{
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 25px;
}

h6{
    color: azure;
    font-family: 'Playfair Display', cursive;
    font-size: 20px;
}

table{
    margin-left: auto;
    margin-right: auto;
}

td,th{
    padding: 10px;
    border: thin #000 solid;
    border-collapse: collapse;
    width: calc(50% - 10px);
    float: left;
    margin: 5px;
}	

h2.form{
    font-size: 18px;
    text-align: left;
    font-family: 'PT Sans', sans-serif;
    padding-left: 5px;
    text-decoration: none;
}

form{ /*This is where the failed styling of the table begins. */
    width: 75%;
    border-radius: 5px;
    padding: 10px;
}

legend, label{
    color: black;
    font-size: 18px;
    font-family: 'PT Sans', sans-serif;
    padding-left: 5px;
}

label{
    display: block;
}

.lim_width{
    width: 200px;
    display: inline-block;
}

#flex1{
    display: flex;
    justify-content: center;
}

button.formbutton{
    width: 200px;
    height: 50px;
    border-radius: 5px;
    color: black;
    transition: 1s;
    font-size: 18px;
    font-family: 'PT Sans', sans-serif;
}

button.formbutton:hover{
    background-color: #c22121;
    color: azure;
    font-size: 22px;
}

textarea{
    width: 60%;
    height: 200px;
    display: block;
}

hr{
    margin-top: 20px;
    margin-bottom: 15px;
}

.spaced{
    margin-bottom: 5px;
    margin-top: 5px;
}

.bold_paragraph{
    font-weight: bold;
}

section{
    margin-top: 10px;
    margin-bottom: 10px;
}

.table_heading{
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
}

.table_paragraph{
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    margin-bottom: 10px;
}

.copyright_paragraph{
    text-align: center;
    margin-bottom: 5px;
}

.footerleft {float:left;}
.footerright {float:right;}