/***/
/* MSE-Engineering basic style
/* M. Biche
/* 1/2/16
/***/
* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

body {
  font: normal 15px arial, verdana, sans-serif;
  color: black;
  background-color: white;
}

header {
  padding-left: 10px;
  padding-top: 10px;
  height: 120px;
}

main {
  display: flex;
  min-height: 600px;
}

nav {
  flex: initial;
  background-color: red;
  color: white;
  font-weight: bold;
  min-width: 120px;
}

nav li {
  padding: 5px 0px 5px 10px;
  list-style-type: none;
}

nav li:hover {
  background-color: blue;
}

nav a {
  color: white;
  text-decoration: none;
}

article {
  flex: auto;
  padding: 10px;
  background-color: yellow;
}

.app {
  background-color: white;
  color: black;
  width: 250px;
  height: 300px;
  margin: 10px;
  padding: 10px;
  float: left;
  border: 2px solid;
  border-radius: 15px;
}

.app:hover {
  background-color: blue;
  color: white;
}

.app h2 {
  text-align: center;
  margin-bottom: 5px;
}

footer {
  color: white;
  background-color: blue;
  padding: 10px;
  min-height: 100px;
}

footer p {
/*	width:500px; */;
}
