﻿* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.psco-color {
    color: #de1d25;
    font-weight: bolder;
}

body {
    background-color: #ECECEC;
}

header {
    text-align: center;
    margin: 15px;
}

#form1 {
    border: 1px solid silver;
    border-radius: 5px;
    width: 600px;
    margin: 20px auto;
    background-color: white;
}

section a {
    border: 1px solid silver;
    border-radius: 5px;
    padding: 15px;
    margin: 20px;
    background-color: #ececec;
    color: black;
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    font-weight: bold;
}

    section a:hover {
        background-color: #de1d25;
        color: white;
    }

   

