.wrapper{
		display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 10px;
    grid-auto-rows: minmax(100px, auto);
    background-image: linear-gradient(-134deg, #3023AE 0%, #C86DD7 100%);
}
.grid-row1{
	grid-column: 2/5;
	grid-row: 1/2;
}
#first_image{
	height: 100px;
	width: 100px;
}
.grid-row2{
	grid-column: 2/11;
	grid-row: 2/4;
	border: 1px solid red;
}
.grid-row3{
	grid-column: 2/11;
	grid-row: 4/8;
	border: 1px solid red;
	padding: 15px;
}
.back{
	grid-row: 1/2;
	grid-column: 10/12;
}
#second_image{
	height: 225px;
	width: 930px;
}
p::first-letter {
    color: black;
    font-size: xx-large;
}
h2{
	color: red;
}
span.clr{
	color: blue;
}
#para_about, ul{
	font-size: 18px;
	color: white;
}
/* code for back navigator*/
.back{
  float: right;
  text-align: center;

  vertical-align: middle;
}

.back a {
  display: inline-block;
  border-radius: 50%;
}
 a:hover .left{
  border: 0.5em solid #e74c3c;
}

 a:hover .left:after {
  border-top: 0.5em solid #e74c3c;
  border-right: 0.5em solid #e74c3c;
}

.left {
  display: inline-block;
  width: 4em;
  height: 4em;
  border: 0.5em solid #333;
  border-radius: 50%;
  margin-right: 1.5em;
  margin-top: 5px;
}

.left:after {
  content: '';
  display: inline-block;
  margin-top: 0.9em;
  margin-left: 0.9em;
  width: 1.4em;
  height: 1.4em;
  border-top: 0.5em solid #333;
  border-right: 0.5em solid #333;
  -moz-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
/* popup*/
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
.title h1{
  color: white;
}
