@charset "UTF-8";
/* CSS Document */
body {
    height: 100vh;
    text-align: center;
    letter-spaceing: 0.15rem;
}

nav {
    padding: 2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1px;
}
centered {
    justify-content: center;
}

ul {
    display: flex;
    float: left;
    list-style: none;
    gap: 1rem;
}
li {
    flex: 1 1 auto;
    padding: 14px 16px;
    text-align: right;
}


.grid-container {
    padding: 0px;
    margin: 0px;
    text-align: center;
    display: grid;
    /* Define Auto Row size */
    /* grid-auto-rows: 100px; */
    /*Define our columns */
    /* grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); */
    grid-gap: 1em;
}

.grid-container > div {
  background-color: #FFFFFF;
  text-align: center;
  padding: 10px 0;
  font-size: 30px;
}

.item1 {
}
.item2 {
}
.item3 {
}



@media (min-width: 900px) {
    .grid-container {
	/*3 Colum Grid*/
	grid-template-columns: repeat(3, 1fr);
    }
    
}

@media (max-width: 890px) {
    nav {
	flex-direction: column;
	padding: 0.5em;
    }
}
	       

@media (max-width: 620px) {
    .grid-container {
	grid-template-columns: 1fr;
	grid-gap: 0.5em;
    }
    ul {
	flex-direction: column;
	gap: 1px;
	padding: 1px;
    }
    li {
	text-align: center;
	padding: 4px 4px;
    }
}

.centered {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}

.flex-container {
  display: -webkit-flex;
  display: flex;  
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  font-weight: normal;
  text-align: center;
}

.flex-container > * {
  padding: 5px;
  flex: 1 100%;
}


.button {
  border: none;
  color: black;
  background-color: #FFAE42;
  border-radius: 12px;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}
a:hover, a:hover .button, button:hover {
    color: blue;
    text-decoration: underline;
}
li.logo {
    text-align: left;
}
header {
    display: flex;
    flex-direction: row;
    padding: 4px;
    gap: 10px;
    justify-content: space-between;
    flex-wrap: row wrap;
    flex-flow: row wrap;
    align-items: baseline;
}
/*  GO 
One Colum BELOW 480 PIXELS */

@media only screen and (max-width: 480px) {
  .section {
    grid-template-columns: 1fr;
  }
}
.logo {
    text-align: left;
    height: 220px;
    width: 220px;
}
item {
}
.blank {
    flex-grow: 5;
}
.flexnav {
    display: flex;
    padding: 4px;
    gap: 10px;
    font-size: 2rem;
    justify-content: space-between;
    flex-wrap: row wrap;
    flex-flow: row wrap;
}
.h1 {
    color:#3333AA;
    font-weight:bold;
}
.flexcenter {
  display: flex;
  height: 300px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.nav-links {
    display: flex;
    list-style: none;
}

.nav-item:not(:first-of-type) {
    margin-left: 1.5em;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


