/* GLobal */

*{
  margin: 0;
  padding: 0;
  outline: none;
}

/*Font */
/*
font-family: 'Roboto Condensed', sans-serif;
font-family: 'Old Standard TT', serif;
font-family: 'Permanent Marker', cursive;
*/


/* header */

.home{
  position: fixed;
  z-index: 5;
}

.home img{
  width: 40px;
  height: 40px;
  margin-left: 20px;
  margin-top: 20px;
  opacity: 0.6;
}

.content{
  position: fixed;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: black;
  position: relative
}

.content h1 {
  color: white;
  font-family: 'Old Standard TT', serif;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}
