﻿.indexHeader {
    color: blue;
    font-size: x-large;
}

.allView {
    height: 40px;
    width: 285px;
}

.table {
    background-color: #66ffff;
    border: solid 1px black;
    border-spacing: 1px;
    border-collapse: separate;
    height: 282px;
    width: 511px;
    text-align: center;
    margin: 0 auto;
}

.table > tr > td {
    padding: 10px;
    border: solid 1px black;
    border-collapse: separate;
    vertical-align: top;
    text-align: center;
}

.siteMessage {
    font-family: Arial, Helvetica, Geneva, Swiss, sans-serif;
    font-size: small;

}

.errorMessage {
    font-weight: bold;
    color: red;
    width: 445px;
}

.displayBtn {
    width: 172px;
    height: 43px;
}

.welcome {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: large;
    color: black;
}

.error {
    font-weight: bold;
    color: red;
    font-size: x-large;
}

.blinker {
    animation: blinker 2s linear infinite;
}

@keyframes blinker {
    50% {
        color: darkred;
    }
}