html {
    background-image: url(../images/bg.png);
    display: table;
    margin: auto;
    background-attachment: fixed;
}

body {
    display: table-cell;
    vertical-align: middle;
}

.border {
    background-image: url(../images/bg2.png);
    border: 4px silver ridge;
    padding: 1em;
    margin: 3em;
    max-width: 55em;
    box-shadow: 1px 1px 2em grey;
}

.align_center {
    text-align: center;
}

header {
    background-image: url(../images/bg2.png);
    min-height: 15em;
    border: 4px silver ridge;
    padding: 1em;
    margin: 3em;
    max-width: 50em;
    box-shadow: 1px 1px 2em grey;
}

img {
    display: inline-block;
    border: 4px silver ridge;
    width: 50%;
    box-shadow: 1px 1px 2em grey;
}

h1,
h2,
h3,
h4,
p,
ul,
li {
    text-align: center;
    text-shadow: 1px 1px 2px white;
}

p {
    margin-left: 12em;
    margin-right: 12em;
}

.nav {

    list-style: outside;
    display: inline;
    padding: 2px;
    transition-duration: 0.4s;
}




h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
}

p,
li {
    font-family: 'Source Sans Pro', sans-serif;
}

header,
section {
    max-width: 90em;
    min-width: 45em;
}

a:link,
a:visited {
    background-color: rgba(255, 255, 255, 0.53);
    color: black;
    border: 2px ridge silver;
    padding: 14px 16px;
    text-align: center;
    text-decoration: none;
    transition-duration: 0.4s;
    display: inline;
    box-shadow: 1px 1px 0.5em grey;
    text-shadow: 1px 1px 2px white;
    
}

a:hover {
    background-color: rgba(124, 93, 34, 0.15);
    box-shadow: 1px 1px 1em rgba(255, 255, 255, 0.53);
}

a.hilight:link,
a.hilight:visited {
    color: black;
    border: 2px ridge silver;
    padding: 14px 16px;
    text-align: center;
    text-decoration: none;
    transition-duration: 0.4s;
    display: inline;
    box-shadow: 1px 1px 0.5em grey;
    text-shadow: 1px 1px 2px white;
    background-color: rgba(247, 212, 147, 0.64);
}

a.hilight:hover {
    background-color: rgba(124, 93, 34, 0.15);
    box-shadow: 1px 1px 1em rgba(255, 255, 255, 0.53);
}
