/* social.css */
/* This stylesheet is linked from the following webpages: */
/*   covening.org/social/index.html */  

body {
        background-color: #9AFCA0;
        font-family: verdana,arial,geneva,sans-serif,sans serif,sansSerif;
}

hr{
        height: 2px;
        background-color: #006600;
        border: none;
}

/* GRID --------------------------------------------------- */
.grid-container {
        max-width: 1200px;
	min-width: 400px;
        height:  100vh;
        margin: 0 auto;

        display: grid;
        grid-template-columns: 1fr 8fr 1fr;
        grid-template-rows: 2fr 1fr 6fr 1fr;
        gap: 0px;
      background-color: #9AFCAO;
}

.grid-item-top {
        background-color: #070d97;
        color: #003333;
     /*	 border: solid black; */

}
.grid-item {
    /* background-color: #070d97; */
      background-color: #9AFCA0;
      color: #003333;
     /*	 border: solid black; */
}

/* FLEXBOX ------------------------------------------------ */

.flex-navbox {
        display: flex;
        flex-direction row;
        justify-content:space-around;
        font-size: medium;
        font-weight: normal;
	/* border: solid red; */
}

.flex-nav1 {
        flex: 1;
}

h2 {
    color: #cc6644;
}

.smallest  {
     color:  #006633;
     font-size: small;
     font-weight: bold;
     font-family: verdana,arial,geneva,sans-serif,sans serif,sansSerif;
}


