:root {
    font-size: 10px;
}

@font-face {
    font-family: 'PT Sans';
    src: url("fonts/PTSans-Regular.ttf");
    font-style: normal;
    font-weight: 300;
}

body {
    font-family: 'PT Sans', sans-serif;
}

header>a, header>nav, header {
    display: grid;
    background-color: #218359;
}

header>nav>a {
    display: inline-grid;
    place-items: center;
    color: #DAF1E7;
    background-color: #218359;
    margin: 0.5rem;
    font-size: 20vw;
}

header>nav {
    grid-template-columns: auto auto auto auto auto auto;
}

header>a, header>nav>a {
    font-size: 200%;
}

#container {
    margin: 0.5rem;
}

nav {
    margin: 2rem 0;
    background-color: #218359;
}

nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

nav ul li {
    display: inline-block;
    z-index: 1;
    padding: 0;
    margin: 0;
}

nav a {
    display: block;
    padding: 0 1rem;
    color: #DAF1E7;
    font-size: 2rem;
    line-height: 6rem;
    text-decoration: none;
    cursor: pointer;
}

nav a:hover {
    background-color: #00AF64;
    color: white;
}

nav ul ul {
    display: none;
    position: absolute;
    top: 100%;
}

nav ul li:hover>ul {
    display: inherit;
}

nav ul ul li {
    min-width: 17rem;
    float: none;
    display: list-item;
    position: relative;
    color: #007241;
}

nav ul ul ul {
    position: absolute;
    top: 0;
    left: 100%;
}

nav ul ul li a {
    color: #007241;
    border: 1px solid white;
    background-color: white;
}

li>a:after {
    content: '▾';
}

li>a:only-child:after {
    content: " ";
}
main h2 {
    position: relative;
    align-items: center;
    text-align: center;
    color: #FF4900;
}
#grid_container {
    display: grid;
    grid-template-areas: "post-1 post-1 post-2 post-2 post-3 post-3" 
    "post-1 post-1 post-2 post-2 post-3 post-3" 
    "post-4 post-4 post-5 post-5 post-6 post-6" 
    "post-7 post-7 post-8 post-8 post-9 post-9" 
    "post-7 post-7 post-8 post-8 post-9 post-9" 
    "post-10 post-10 post-11 post-11 post-12 post-12";
    grid-template-rows: repeat(3, 2fr);
    grid-template-columns: repeat(6, 1fr);
    row-gap: 0.5rem;
    justify-items: center;
    
}
main div p a{
    text-decoration: none;
    color: #034569;
    font-weight: bold;
}
main div p a:hover{
    text-decoration: none;
    background-color: #034569;
    color: white;
}

#post1 {
    grid-area: post-1;
    width: 30vw;
}

#post2 {
    grid-area: post-2;
    width: 30vw;
}

#post3 {
    grid-area: post-3;
    width: 30vw;
}

#post4 {
    grid-area: post-4;
}

#post5 {
    grid-area: post-5;
}

#post6 {
    grid-area: post-6;
}

#post7 {
    grid-area: post-7;
    width: 30vw;
}

#post8 {
    grid-area: post-8;
    width: 30vw;
}

#post9 {
    grid-area: post-9;
    width: 30vw;
}

#post10 {
    grid-area: post-10;
}

#post11 {
    grid-area: post-11;
}

#post12 {
    grid-area: post-12;
}

main {
    font-size: 2rem;
    cursor: default;
}

h1 
{
    text-align: center;
	color: #034569;
}

main div {
    position: relative;
    align-items: center;
    text-align: center;
}



footer {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 5rem;
    padding: 2rem;
    align-items: flex-start;
    background-color: #343a40;
    color: white;
    font-size: 2rem;
    cursor: default;
}

footer>a {
    color: white;
}

b {
    color: #007241;
}

#link p a {
    cursor: pointer;
    text-decoration: none;
    color: white;
}

#link p a:hover {
    cursor: pointer;
    text-decoration: none;
    color: white;
    background-color: #218359;
}