html {
    box-sizing: border-box;
    font-size: 100%;
}
*, *:before, *:after {
    box-sizing: inherit;
}  

body {
    background-color: #F7FFF7;
    color: #000A29;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}
a, a:visited{
  text-decoration: none;
  color:#000A29;
}

.headers {
    position: fixed;
    overflow: visible;
    z-index: 5000;
    background-color: #000A29;
    padding: 5px 5px 4px 5px;
    width: 100%;
    top: 0;
    display: flex;
    justify-content: space-between;
}


.dropdown {
  float: left;
  overflow: hidden;
}


.headers img {
  float:left;
  display: block;
  margin: 0 20px 0 10px;

}

.dropdown .dropbtn {
  font-size: 1rem;  
  border: none;
  outline: none;
  color: #F7FFF7;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}


.dropdown-content {
  display: none;
  position: absolute;
  background-color: #000A29;
  min-width: 120px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 5000;
  
}


.dropdown:hover .dropdown-content {
  display: block;
}




/*
Must after headers to get menu below eachother maybe fixed to read easier
*/
.dropdown-content a {
  float: none;
  padding: 12px 16px;
  display: block;
  text-align: left;
  color: #F7FFF7;
  text-decoration: none;
  font-size: 1rem; 
  line-height: normal;
  border-radius: 4px;
  margin: 4px 2px 0;
}

.headers a:hover {
    background-color: #85F28B;
    color: #F7FFF7;
  }
  
.headers a.active {
    background-color: #3CF045;
    color: #F7FFF7;
  }

.headers-right {
  display: flex;
  justify-content: flex-end;
  }

.headers-left {
  display: flex;
  justify-content: flex-start;
}

.headers-left a {
  color: #F7FFF7;
}

.btn{
    color: #000A29;
    border: 2px solid #2FBD36;
    background-color: #2FBD36;
    text-align: center;
    text-decoration: none;
    font-size: 1rem; 
    line-height: normal;
    border-radius: 4px;
    padding: 2px;
}
.btnlow{
  color: #000A29;
  border: 2px solid #2FBD36;
  background-color: #F7FFF7;
  text-align: center;
  text-decoration: none;
  font-size: 1rem; 
  line-height: normal;
  border-radius: 4px;
  padding: 2px;
}

.page a:hover {
  background-color: #85F28B;
  color: #F7FFF7;
}

.btn:hover{
  background-color: #85F28B;
  color: #F7FFF7;
}

.btnflex{
  display: flex;
  align-items: center;
  padding: 0 2px;
  border-radius: 4px;
  margin: 0 3px;
  font-size: 1rem;
}

.title h3 {
  font-size: 7rem;
  padding: 4rem 0px 2rem;
  margin: 0;
  text-align: center;
  color: #F7FFF7;
  font-weight: 900;
  background-color:#85F28B;
  z-index: -1;
}

.undertitle h1 {  
  font-size: 2rem;
  padding: 1rem 0px 1rem;
  margin: 0;
  text-align: center;
  color: #1C7020;
  font-weight: 900;

}

.container {
  width: 100%;
  max-width: 1000px;
  padding: .75rem;
  margin-left: auto;
  margin-right: auto;
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
.card {
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
  text-align: center;
  padding: 1rem;
  color: #0A4370;
}
.card p {
  color: #000A29;
  
}
.card-border{
  border: 2px solid #2FBD36;
}
.card img {
  vertical-align: middle;
  object-fit: cover;
}
/*
Blog
*/


/*
Maybe change to another css file with allotment styles
*/
.blog-container {
  width: 100%;
  max-width: 1000px;
  padding: .75rem;
  margin-left: auto;
  margin-right: auto;
}
.blog{
  display: flex;
  justify-content: space-between;
  border: 2px solid #2FBD36;
  margin: 5px 2px;
  background-color: #e6f3e7;
  z-index: 1;
  position: relative
}
.blog-left {
  width: 10%;
  min-width: 75px;
  display: flex;
  justify-content: center;
}
.img-blog{
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 5px;
  position: relative;
  object-fit: cover;
  z-index: 2;
}
.img-container2{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.img-blog2{
  width: 22.5%;
  padding: 2px;
  position: relative;
  object-fit: cover;
  z-index: 2;
}


.blog-author {
  display: inline-block;
  margin: 5px 10px;
}
.blog-date {
  display: inline-block;
  margin: 5px 10px;
}
.blog-body {
    margin: 5px;
    padding: 2px;
    width: 89%;
}
.article-metadata{
  border-bottom: 2px double #3E7040;
  padding: 2px;
  margin: 2px;
}

.article-metadata a{
  color: #3E7040;
}
.article-title {
  padding: 2px;
  margin: 2px;
  color: #3E7040;
}
.article-title a{
  color: #3E7040;
}


.blog-detail{
  border: 2px solid #2FBD36;
  margin: 5px 0;
  background-color: #e6f3e7;
  z-index: -5000;
}
.blog-body a {
  padding: 4px;
  text-decoration: none;
  font-size: 1rem; 
  line-height: normal;
  border-radius: 4px;
  margin: 4px 2px 0;
}


.article-metadata a:hover {
  background-color: #85F28B;
  text-decoration: none;
  color: #F7FFF7;
}
.article-title a:hover {
  background-color: #85F28B;
  text-decoration: none;
  color: #F7FFF7;
}

.blog-edit{
  margin: 5px;
}

form button{
  margin: 5px;
}
form input{
  width: 99%;
}
form textarea{
  width: 99%;
}


/*
images in blog details
*/
.img-container {
  width: 100%;
  max-width: 500px;
  padding: .75rem;
  margin-left: auto;
  margin-right: auto;
}
.img-detail{
  width:100%;
  margin-left: auto;
  margin-right: auto;

}

.inline {
  display: flex;
  justify-content: center;
  align-items: center;

}
.inline-item {
  width: 33%;
  text-align: center;
  margin: 2px;
}
.inline-item2 {
  width: 5%;
  text-align: center;
}


.material-icons-outlined{
  font-size: 18px;
}

@media screen and (max-width: 600px) {
  .title h3 {
    font-size: 6rem;
  }
  .card{
    width: 100%;
  }
  .headers img {
    margin: 0 10px 0 5px;
  }
  .btnflex{
    font-size: 0.875rem;
    padding: 1px;
  }
  .material-icons-outlined.md-18{
    font-size: 18px;
  }
}



@media screen and (max-width: 500px) {
  .title h3 {
    font-size: 5rem;
  }
  .card{
    width: 100%;
  }
  .headers img {
    margin: 0;
  }
  .headers-right .hidden{
    font-size: 0px;
  }
}
