@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
* {
  font-family: "Poppins", sans-serif;
  margin: 0%;
  padding: 0px;
}
body{
  background: rgba(0, 0, 0, 0.5) url("./background1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: darken;

}
header {
  display: flex;
  background-color: white;
  transition: 0.8s;
}
header:hover {
  box-shadow: 0 0 28px 0 rgb(51, 51, 51);
  
}
.logopart{
  display: flex;
  padding-left: 38px;
}
.logo{
  width: 75px;
  height: 75px;
}
.name {
  padding: 15px;
  font-size: 20px;
  color: #01a800;
}
.nav{
  padding: 20px;
  margin-left: auto;
}
.li {
  padding: 20px 20px;
  display: inline;
  padding-bottom: 50px;
}
a {
  text-decoration: none;
  text-emphasis: none;
  padding-top: 25px;
  font-size: 20px;
  color: #01a800;
  font-weight: bold;
  transition: 0.3s;
}
a[href*="#"] {
  border-bottom: 5px solid #01a800;
}
a:hover {
  border-bottom: 5px solid #01a800;
}
main {
    padding-top: 50px;
    justify-content: left;
    text-align: center;
    max-width: 700px;
    padding-left: 380px;
}
.content {
    background-color:  white;
    opacity: .7;
    padding: 50px;
    border-radius: 35px;
    margin-bottom: 50px;
    box-shadow: 0 0 28px 0 rgb(51, 51, 51);
}

h1, h2, h3, h4, h5 {
    color: #01a800;
    text-align: left;
}
p, li {
    padding: 2px;
    font-size: 15px;
    color: black;
}
.list > li{ 
    text-align: left;
    padding-left: 50px;
    list-style-position: inside;

}

.heading {
    border-bottom: 3px solid #01a800;
    text-align: center;
}
h3 {
    padding-top: 38px;
    padding-bottom: 20px;
}
p, li {
  text-align: justify;
  text-justify: inter-word;
}