/* 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:
                "main_content"
                "highlights";

        width:100%;
        margin: auto;
}

main_content {
brakground: #47ffeb;
grid-area: main_content;
margin: 3% 0% 3% 0;
}

highlights {
brakground: #47ffeb;
grid-area: highlights;
margin: 3% 0% 3% 0;
}




@media only screen and (min-width:992px) {
        .container{
        grid-template-columns: 0.8fr 1.2fr;
        grid-template-rows: 1fr;
        grid-auto-rows: auto;
        gird-template-areas:
            "main_content highlightsi";
        
        width:90%;
h1 {
  font-size: 30px;
  font-weight: 300;
  margin: 0 0 20px 0;
}

h3 {
  font-size: 20px;
  font-weight: 300;
  font-weight:bold;
  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;
}
    }
}
