@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: 300px;
  text-align: center;
  color: white;
}
.heading1 {
  font-size: 50px;
}
.copyright {
  text-align: center;
  padding-top: 200px;
  color: white;
  font-size: 10px;
}





