@font-face {
    font-family: 'Amble';
    src: url('../fonts/Amble-Bold.woff2') format('woff2'),
        url('../fonts/Amble-Bold.woff') format('woff');
    font-weight:normal;
    font-style: normal;
    font-display: swap;
}
html{
background-color:#f6f2e4;  
}
body {
  width: 98%;
  padding-bottom: 2px;
  margin:auto;
  font-family:amble;
  font-size: medium;
  color: black;
  display: flex;
  flex-direction: column;
}
h1{
color: #73f6d3; 
}
section,article, aside, footer, header {
  padding:0.5rem; /*rem (Relative to Root Font Size)equal to 8 pixels*/
}
img,video,embed{
  max-width: 95%;
}
.logo{
float:right;
clear: both;
height: auto;  
}
h1 {
 margin: auto;
}
header{
  background-color:#3ba07a;
  color: #f2f7fa;
border-bottom: 1px solid #0d0d0d;
}
footer{
 background-color:#fbc57b;
color:#f5fbfc;
text-align:left;
border-bottom: 2px solid #0d0d0d;
}
h1{
  text-align: center;
  {
nav a{background-color: #65eaa6; 
}
nav ul {
  display: flex;
  flex-direction: column;
  list-style-type: none;
}
nav ul li{
  position: relative
}
nav ul li a{
display: flex;
flex-direction: column;
margin:0;
padding: 0;
list-style-type :none;
}
.dropdown > li > ul {
  display: none;
  position: absolute;
  right: 0;
  margin-top: 0;
  padding: 0;
  z-index: 2;
}
.dropdown li ul li {
  border-right: solid 1px black;
}
.dropdown > li:hover > ul {
  display: block;
}
.clear {
 clear: both;
}

aside {
    background-color: #106C6C;
    float: Left;
    color: #eee;





/* Extra Small Screen*/
@media screen and (min-width:320px){
  body {
  display:flex;
  flex-direction: column;
  max-width: 75rem;
  }
  main {
 display: flex;
 flex-wrap: wrap;
  }
 nav, header {
  order: -1;
 }
 nav {
  flex-direction: row;
 }
 nav a {
 flex: auto;
 }
 article {
 flex: 50%;
 }
  aside, section {
 flex: 100%;
 }
 section p {
 column-count: 2;
 column-gap: 20px;
  column-rule: 1px solid rgb(8, 8, 8);
  }

/* small screen */
@media screen and (min-width: 768px) {
  body {
  display: flex;
  flex-direction: column;
  max-width: 75rem;
 }
  main {
 display: flex;
 flex-wrap: wrap;
  }
 nav, header {
  order: -1;
 }
 nav {
  flex-direction: row;
 }
 nav a {
 flex: auto;
 }
 article {
 flex: 50%;
 }
  aside, section {
 flex: 100%;
 }
 section p {
 column-count: 2;
 column-gap: 20px;
  column-rule: 1px solid rgb(8, 8, 8);
 }
/* Medium screen */
@media screen and (min-width: 992px) {
  body {
  display: flex;
  flex-direction: column;
  max-width: 75rem;
 }
   }
  main {
 display: flex;
 flex-wrap: wrap;
  }
 nav, header {
  order: -1;
 }
 nav {
  flex-direction: row;
 }
 nav a {
 flex: auto;
 }
 article {
 flex: 50%;
 }
  aside, section {
 flex: 100%;
 }
 section p {
 column-count: 2;
 column-gap: 20px;
  column-rule: 1px solid rgb(8, 8, 8);
}
  }
/* large screen */
@media screen and (min-width: 1200px) {
  body {
  display: flex;
  flex-direction: column;
  max-width: 54rem;
 }
  main {
 display: flex;
 flex-wrap: wrap;
  }
 nav, header {
  order: -1;
 }
 nav {
  flex-direction: row;
 }
 nav a {
 flex: auto;
 }
 article {
 flex: 50%;
 }
  aside, section {
 flex: 100%;
 }
 section p {
 column-count: 2;
 column-gap: 20px;
   column-rule: 1px solid rgb(8, 8, 8); 
  }
  }