@import url('https://fonts.googleapis.com/css2?family=Noto+Color+Emoji&family=Rethink+Sans:ital,wght@0,400..800;1,400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Color+Emoji&family=Playwrite+GB+S:ital,wght@0,100..400;1,100..400&family=Rethink+Sans:ital,wght@0,400..800;1,400..800&family=Tangerine:wght@400;700&display=swap');
body {
    font-family: "Rethink Sans", sans-serif;
    margin: 0px;
    font-size: 115%;
}
  
  nav a {
   background-color: rgb(11, 61, 11);
   text-decoration: none;
   color: white;
   padding: 10px 30px;
   border: rgb(6, 53, 6) 1px solid;
  }
 
 header h1 {
   font-family:"tangerine";
   color: yellow;
   font-size: 5em;
   text-align: center;
   font-weight: normal;
   font-style: italic;
   margin-bottom: 20px;
 }
 img{
   width: 100%;
   max-width: max-content;
   border-radius: 5px;
   box-shadow: 0px 0px 2px black;
 }
 header{
   background-image: linear-gradient(to bottom, #436f32, #294222);
   background-color: green;
   display: flex;
   flex-direction: column;
   align-items: center;
   padding: 30px 10%;
 }
nav {
   display: flex;
   flex-direction: column;
   margin-bottom: 20px;
  
}
@media (min-width:800px) {
   nav{
      flex-direction: row;
      justify-content: center;
   }
   section{
    flex-direction: row;
   }
   article {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
   }
   p {
    text-align: center;
   }
}
nav a:hover {
   background-color: white;
   color:rgb(11, 61, 11) ;
   transition: 0.5s;
   border-color: white;
   border-radius: 2px 20px;
}
@media (max-width:900px){
  header img {
      display: none; 
  }
}
a {
  color: white;
  text-decoration: none;
  padding: 10px 25px;
  margin: 15px 10px;
  min-width: 85px;
  text-align: center;
  background-color: #436f32;
  background-image: linear-gradient(to bottom #436f32, #092202);
  border-radius:25px 0px;
  box-shadow: 0px 0px 2px black;
  transition: 0.3s;
}
article a {
  margin-left: 0px;
}
a:hover {
  border-radius: 0px 25px;
}
main {
  background-color: #EAEAEA;
}
section {
  display: flex;
  flex-direction: column;
  padding: 20px 10%;
}
article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px 20px;
}
h2  {
  color: #294222;
  font-weight: normal;
  margin-top: 20px;
  margin-bottom: 5px;
}
p {
  text-align: justify;
}

footer{
  text-align: center;
  color: white;
  background-color: #3e672f;
  background-image: linear-gradient(to bottom #436F32, #092202);
  padding: 10px;
}