body {
      background-color: #e0e0e0!important;
    }

    .bold-text {
      font-weight: bold;
      font-size: 60px;
    }

    .container {
      display: flex; /* Use flexbox */
      justify-content: center; /* Center content horizontally */
      align-items: top; /* Center content vertically */
    }

    .text-box {
	  width:600px;
      padding: 20px; /* Add padding to the text box */
      border-radius: 10px; /* Add rounded corners */
      background-color: rgba(255, 255, 255, 0.5); /* Set background color with transparency */
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add box shadow for depth effect */
      margin-left: 70px; /* Move the text box 70 pixels to the right */
      text-align: center; /* Right-align text */
    }


    .small-text {
      font-size: 17px;
      margin-top: 10px; 
    }
	.image-container img {
  border-radius: 10px; /* Add rounded corners */
}

<style>
    body {
      background-color: #e0e0e0!important;
    }

    .container {
      display: flex; /* Use flexbox */
      border: 2px solid #ccc; /* Add border */
      border-radius: 10px; /* Add border radius */
      padding: 20px; /* Add padding */
    }
    .bold-text {
      font-weight: bold;
      font-size: 60px;
    }

    .container {
      display: flex; /* Use flexbox */
    }

    .text-container {
      margin-top: 50px; /* Add margin to push the text down */
    }

    .text-box {
      padding: 30px; /* Add padding to the text box */
      border-radius: 10px; /* Add rounded corners */
      background-color: rgba(255, 255, 255, 0.5); /* Set background color with transparency */
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add box shadow for depth effect */
    }

    .image-container {
      margin-left: 20px; /* Add margin to the left of the image container */
      display: flex; /* Use flexbox */
      flex-direction: column; /* Stack images vertically */
      align-items: center; /* Align items horizontally */
    }


    .small-text {
      font-size: 17px;
      margin-top: 10px; /* Add margin-top to create space between paragraphs */
    }