* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Oxygen', sans-serif;
  user-select: none;
}

body {
  min-height: 100vh;
  background: linear-gradient(to bottom, rgb(144,238,144), rgb(144,238,144));
  overflow: hidden;
  padding: 20px;
}

body::before {
    content: "";
    position: absolute;
    bottom: -450px; 
    right: -150px;  
    width: 900px; 
    height: 900px; 
    background-color: rgb(45 138 45);
    opacity: 0.6;
    border-radius: 50%; 
    z-index: -1; 
}

nav {
  display: flex;
  align-items: center;
  padding: 10px 0;
}

nav img {
  height: 90px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.box1 {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.box1 h1 {
  font-size: 36px;
  font-weight: bolder;
  color: rgb(45 138 45);
  margin-bottom: 20px;
}

.box1 p {
  font-weight: 600;
  font-size: larger;
  line-height: 1.8;
  margin-bottom: 40px;
}

.image img {
  height: 60px;
  transition: transform 0.3s ease;
}

.image img:hover {
  transform: scale(1.05);
}

.img-wrapper {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.img-wrapper img {
  margin-top: 150px;
  width: 100%;
  height: 100%;
  scale: 1.5;
}


@media (max-width: 1024px) {

  html, body {
  max-width: 100%;
  overflow-x: hidden;
  }

  body::before {
    display: none;
  }
  
  .container {
    padding: 0;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center
  }

  nav {
  display: flex;
  align-items: center;
  justify-content: center;
}


  .box1 {
    padding: 10px;
  }

  .img-wrapper img{
    margin-top: 50px;
  }
    

  .box1 h1 {
    font-size: 28px;
    margin-top: 20px;
  }

  .box1 p {
    font-size: 15px;
  }
}
