/* styles for desktop devices */
.container{
        display: grid;
        height: auto;
        grid-template-columns: 1fr;
        /*grid-template-rows: 1fr 1fr ;*/
        grid-auto-rows: auto;
        gird-template-areas:
                "left_content"
                "right_content";

        width:100%;
        margin: auto;
}

left_content {
brakground: #47ffeb;
grid-area: main_content;
}

right_content {
brakground: #47ffeb;
grid-area: highlights;
}




h1 {
  font-size: 30px;
  font-weight: 300;
  margin: 0 0 20px 0;
  font-weight:bold;
  align: left;
}
h2 {
  font-size: 25px;
  font-weight: 300;
  margin: 0 0 20px 0;
  font-weight:bold;
  
}


h3 {
  font-size: 20px;
  font-weight: 300;
  margin: 0 0 20px 0;
}

h4 {
  font-size: 18px;
  font-weight: 300;
  font-weight:bold;
  margin: 0 0 20px 0;
}

h5 {
  font-size: 16px;
  font-weight: 300;
  font-weight:bold;
  margin: 0 0 20px 0;
}


@media only screen and (min-width:992px) {
        .container{
        grid-template-columns: 0.25fr 0.75fr;
        grid-template-rows: 1fr;
        grid-auto-rows: auto;
        gird-template-areas:
            "left_content right_content";

        width:90%;

}
