body{
  background: #302756;
  color: #ef6186;
  text-align: center;
  font-family: courier;
  font-weight: bold;
}
h1 {
  color: #bfeef2;
  font-size: 50px;
}
h2 {
  color: #6d2dd7;
  font-size: 30px;
}
img {
  width:100px;
  height:100px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

 * {
  box-sizing: border-box;
}

body {
  margin: 0;
}

/* Style the header */
.header {
  background-color:#302756;
  padding: 10px;
  text-align: center;
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color:#6d2dd7;
}

/* Style the topnav links */
.topnav a {
  float: left
 ;
  display: block;
  color: pink;
  text-align: center;
  padding: 16px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: purple;
  color: white;
}


.grid-container {
  display:grid;
  grid-template-columns: 200px 300px 320px;
  grid-template-rows: 40px 190px 210px 60px 300px 200px;
  position:relative;
  grid-gap: 5px;
  margin:0 auto;
  margin-bottom: 10px;
  width: 900px;
  justify-content: center;
  grid-template-areas: 
  
