*{
  box-sizing: border-box;
}

body{
  font-family: 'Open Sans', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  color: rgb(66, 66, 66);
  text-align: center;
  margin: 0;
  padding: 0;
}

h1{
  /* ems zijn eenheden relatief naar de lettertype grote van de 'parent' */
  font-size: 2em;
}

a:link, a:visited{
  text-decoration: none;
  /* fancy animatie */
  transition: color .4s;
  color: rgb(25, 115, 154);
}

a:hover{
  color: rgb(77, 180, 226);
}

.page{
  padding: 0 1em;
  height: 100vh;
  /* dit defineerd een grid met kolommen en rijen */
  display: grid;
  grid-template-rows: 1fr repeat(3, max-content) 1fr;
  grid-template-columns: 1fr minmax(min-content, 960px) 1fr;
}

.header{
  /* defineer welke cellen in de grid worden ingenomen bijvoorbeeld: van grid lijn 2 tot grid lijn 3 */
  grid-column: 2/3;
  grid-row: 2/3;
}

.content{
  grid-column: 2/3;
  grid-row: 3/4;
  margin: 2em 0;
}

.footer{
  grid-column: 2/3;
  grid-row: 4/5;
}

.footer::before{ /* fancy scheidingslijn */
  content: '';
  display: block;
  height: 1px;
  background: rgb(25, 42, 66);
  margin: 1em auto;
  width: 25%;
}


.logo{
  margin: 1em 0;
  display: inline-block;
}

.logo img{
  height: 100px;
  width: auto;
}

.info{
  list-style: none;
  margin: 0;
  padding: 0 1em;
  /* css flexbox */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}

.info li{
  padding: 1em;
}

.info img{
  width: 150px;
  height: auto;
}

.info .links{
  line-height: 2em;
  height: 100%;
}

.icon{
  margin-right: .5em;
}

