@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;800&display=swap');

body{
  margin:0;
  padding:0;
  font-family: 'Poppins', sans-serif;
  background-color: #95ff00;
}

h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 50px;
}

header {
  background: #ff7e00;
  width:100%;
  padding:20px 0;
  color:white;
  text-align:center;
}

a {
  text-decoration:none;
  color:inherit;
  font-size: 30px;
  font-weight: bold;
}

nav ul {
  background-color:#379ad6;
  overflow:hidden;
  color:white;
  padding:0;
  margin:0;
  text-align:center;
  -webkit-transition:max-height 0.4s;
  -ms-transition:max-height 0.4s;
  -moz-transition:max-height 0.4s;
  -o-transition:max-height 0.4s;
  transition:max-height 0.4s;
}

nav ul li {
  display:inline-block;
  padding:20px;
}

nav ul li:hover {
  background-color:#ff7e00;
}

section {
  line-height: 1.5em;
  font-size:0.9em;
  padding:40px;
  width:75%;
  margin:0 auto;
}


@media screen and (max-width:580px){
  
  nav ul {
    max-height:0;
  }
  
  nav ul li {
    width:100%;
    box-sizing:border-box;
    padding:15px;
    text-align:left;
  }
   

}


  footer{
    position:relative;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ff7e00;
    height: auto;
    width: 100%;
    font-family: "Open Sans";
    padding-top: 40px;
    color: #fff;
    margin-top: 100px;
}
.footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.footer-content h3{
    font-size: 60px;
    font-weight: bold;
    text-transform: capitalize;
    line-height: 3rem;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 800px) {
    .footer-content h3{
        font-size: 10px;
    }
  }

.footer-content a{
    font-size: 16px;
}

.footer-content img{
  width: 130px;
  height: 130px;
}

.footer-content p{
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 19px;
    margin-top: -20px;
    font-family: 'Poppins', sans-serif;
}

.footer-bottom{
    background: #379ad6;
    width: 100%;
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p{
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
}
.footer-bottom span{
    text-transform: uppercase;
    opacity: .4;
    font-weight: 200;font-family: 'Poppins', sans-serif;

}