* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'poppins', sans-serif;
}

body {
  background: #f4f4f4;
}

.navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: green;
  background-color: whitesmoke;
  position: relative;
  z-index: 1;
}
h1{
    background-color: green;
    padding: 18px;
    color: white;
    text-align: center;
    font-size: 38px;
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  padding: 9px 18px;
  border-radius: 5px;
  color: green;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: white;
  background-color: green;  
}

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

.logo img{
    width: 99px;
}
.background img{
    width: 100vw;
}
.background{
    position: relative;
}
.background p{
    position: absolute;
    top: 288px;
    right: 222px;
    width: 555px;
    text-align: center;
    color: green;
    font-size: xx-large;
}
/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: green;
    width: 100%;
    flex-direction: column;
    text-align: center;
    display: none;
    padding: 22px 2px;

  }
  .nav-links li a{
    color: white;
  }
  .background p{
    font-size: medium;
    right: 22px;
    top: 99px;
    width: 333px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

@media (max-width: 555px) {
    .background p{
    font-size: medium;
    right: 22px;
    top: 44px;
    width: 222px;
  }
  h1{
    font-size: 24px;
  }
}