/*-------IMPORT FONTS------*/
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,800;1,400;1,800&display=swap');

html {
    height:100%
}

h1 {
    font-family:Georgia, 'Times New Roman', Times, serif;
    font: size 40px;
    background-color:none;
    color:rgb(248, 128, 146);
    padding-left: 2em;
    padding-right: 2em;
}

h2 {
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-size:30px;
    background-color:none;
    color:palevioletred;
}

h3 {
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-size: 20px;
    background-color: none;
    color:rgb(211, 191, 211);
}

body {
    height: 100%;
    font-family:Georgia, 'Times New Roman', Times, serif;
    font: size 14px;;
    line-height:auto;
    color:black;
    background-color:darkslategray;
    margin: 1em;
    padding: 1em;
    padding-top: 10px;
}

.header {
    text-align:center;
}

.grid-container {
    display: grid;
    grid-template-columns: auto auto auto;
    background-color: #2196F3;
    padding: 10px;
  }
  .grid-item {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.8);
    padding: 20px;
    font-size: 30px;
    text-align: center;
}

p {
    font-size: 14pt; margin-left: 15px;
    font-family:'Times New Roman', Times, serif, Arial, sans-serif;
    line-height: 1.5rem;
    justify-content:center;
    color:rgb(211, 191, 211);
}

header {
background: darkslategray
}

main {
    min-height:100%;
    margin-bottom:auto;
    background:darkslategray;
}

#nav ul {
    font-family:'Times New Roman', Times, serif;
    font-size: 15px;
    background-color:darkslategray;
    padding: 30px;
    display:inline;
    text-align: center;
    position:sticky;
    top:0;
}
  
  li {
    float: center;
  }
  
  li a {
    display:block;
    color: rgb(73, 70, 70);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  li a:hover:not(.active) {
    background-color: rgb(166, 88, 88);
  }
  
  li a.active {
    color: palevioletred;
    background-color: #04AA6D;
  }

a:link {color:palevioletred}
a:visited {color:rgb(76, 2, 76)}
a:hover {color:whitesmoke}
a:active {color:pink}

ul {
    list-style-type: none;
}

ol li {
 color:rgb(211, 191, 211);
}

footer {
    height:100px;
    display:block;
    background: white;
    text-align: center;
    color:palevioletred;
    font-size: larger;
    font-style:italic;
    image-rendering: inherit;
    border-color: white;
    padding-top:1em;
    padding-bottom: 2em;
}

