* {
    padding: 0;
    margin: 0;
}

div {
    height: 100vh;
}
.working {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
  }

#leftside {
    background-image: url('Pg\ 2.jpg'); /* Replace 'your-image-url.jpg' with the path to your image */
  background-size: cover; /* Adjust the background size to cover the entire div */
  background-position: center; /* Center the background image */
  background-repeat: no-repeat; /* Prevent the background image from repeating */
    
}
#rightside {
    background-image: url('Pg\ 1.jpg'); /* Replace 'your-image-url.jpg' with the path to your image */
    background-size: cover; /* Adjust the background size to cover the entire div */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Prevent the background image from repeating */
      
    
}

.content1 {
    background-color:rgba(180,203,138,1.00);
    font-family: 'Song Myung', serif;
    color: #3a4920;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    font-size: 20px;
}
.move {
    display: flex;
    justify-content: space-around;
}

.move p {
    margin-top: 10px;
    margin-bottom: 10px;
}
.move button {
    display: inline-block;
      padding: 10px 20px;
      font-size: 16px;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      cursor: pointer;
      border: 2px solid #040502;
      color: #ffffff;
      background-color: #3a4920;
      border-radius: 5px;
      transition: background-color 0.3s, color 0.3s, border-color 0.3s;
      margin: 10px;
}

.move button:hover {
    background-color: #ffffff;
    color: #3498db;
    border-color: #3498db;
}
@media screen and (max-width: 1100px) {
    #leftside {
       display:none;
        
    }
    #rightside {
             
        display:none;
    }
    .working {
        grid-template-columns: 1fr;
    }
  }