body{
    color:#fff;
    background: #3bbced;
    font-family:'Nunito Semibold';
    text-align:center;
}


.container {
    display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(100px, auto); /* Will set height of each rows */
  max-width: 1300px;  /* This will set width of the content */
  margin: 0 auto; /* This will make it center to screen */
/*  grid-gap: 1em;*/
  grid-template-areas: 
    "header header"
    "nav nav"
    "main main"
    "footer footer"
}

.item {
 /* border: 1px solid; */ /* Display border for each GRID  */
  padding: 1em;
}

.header {
  grid-area: header;
}

.nav {
  grid-area: nav;
}

.main {
  grid-area: main;
}

.footer {
  grid-area: footer;
}

.logo {
  float: left;
  padding: 10px 0;
}

/* NAV MENU CSS - START */
nav {
  float: right;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

nav li {
  display: inline-block;
  margin-left: 70px;
  padding-top: 23px;

  position: relative;
}

nav a {
  color: #444;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
}

nav a:hover {
  color: #000;
}

nav a::before {
  content: '';
  display: block;
  height: 5px;
  background-color: #444;

  position: absolute;
  top: 0;
  width: 0%;

  transition: all ease-in-out 250ms;
}

nav a:hover::before {
  width: 100%;
}
/* NAV MENU CSS - END */

