/* body styling */
body {
  background-image: url('000000.jpg');
  color: white;
  margin: 0;
  padding: 0;
}

/* wrapper for the grid layout */
.candy_rapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /*it has to take up the full viewport height */
  padding: 20px;
}

/* grid Layout for the two sections */
.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%; /* adjust width here */
}

/* image container */
#g1 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

#g1 img {
  max-width: 100%;
  height: auto;

}

/* text container */
#g2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: white;
  padding: 20px;
  background-color: #000000; 
}

/* heading styling!! get fashionable!!!! */
#g2 h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-align: left;
}

/* paragraph styling!! groovy!*/
#g2 p {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #aaa;
  text-align: left;
}
