/* Unset any defaults */
* {
    padding: 0;
    margin: 0;
    font-family: Arial, "MS Sans Serif", sans-serif;
}

/* For headings */
.h1Head {
    padding: 20px;
    text-align: center;
    font-size: 36pt;
    font-weight: bold;
}

H2 {
    font-size: 24pt;
    font-weight: bold;
}

/* For normal paragraphs */
p.Normal {
    font-size: 12.0pt;
    margin-bottom: .000001pt;
}

.counters {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}

.counterLeft {
    display: flex;
    width: 30%;
    justify-content: flex-start;
}

.counterCenter {
    display: flex;
    width: 30%;
    justify-content: center;
    align-items: center;
}

.counterRight {
    display: flex;
    width: 30%;
    justify-content: flex-end;
}

.linksBox {
    width: 100%;
    margin-left: 10%;
    justify-self: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.links {
    display: flex;
    width: 40%;
    justify-content: center;
    align-items: center;
    padding: 8px 4px;
    border: 1px solid lightgrey;
}

/* page footers */
.footers {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}

.iconRight {
    display: flex;
    width: 30%;
    justify-content: flex-end;
}

.iconCenter {
    display: flex;
    width: 30%;
    justify-content: center;
}

.iconLeft {
    display: flex;
    width: 30%;
    justify-content: flex-start;
}

/* Parish register links */
.parishLinksBox {
    width: 100%;
    margin-left: 35%;
    justify-items: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.parishLinks {
    display: flex;
    width: 30%;
    justify-content: center;
    align-items: center;
    padding: 8px 4px;
    border: 1px solid lightgrey;
}

/* File upload box */
.uploadMain {
    display: flex;
    justify-content: center;
}

.uploadBox {
    margin:30px;
    width:500px;
    height:300px;
    border:1px dotted grey;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}

/* Make superscript small as well */
sup {
    font-size: xx-small;
}

/* Change link properties */
A:link {color: #666666; background-color: #CCFFFF}
A:active {color: #999900; background-color: #CCFFFF}
A:visited {color: #800080; background-color: #CCFFFF}

/* Values common for the whole body */
BODY {
    color: #000000;
    background-color: #CCFFFF;
    font-family: Arial, "MS Sans Serif", sans-serif;
}
