* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background-color: #fff;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  position: relative;
}

h1 {
  font-family: "Madimi One", sans-serif;
  margin: 8rem 0 2rem 0;
}

h3 {
  font-family: "Madimi One", sans-serif;
  margin: 2rem 0;
}

a:link,
a:visited {
  color: blue;
  text-decoration: none;
}

.social a {
  margin: 0 2rem 0 0;
}

.description {
  font-family: "Katibeh", sans-serif;
  font-weight: 200;
  font-size: 24px;
}

.invisible-box {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;

  display: grid;
  z-index: 1;
}

.small-box {
  width: 100%;
  height: 100%;
  background-color: #fff;

  animation: disappear 1s ease-in;
  animation-fill-mode: forwards;
}

.test {
  margin: 0 2rem;
}

.main-box {
  max-width: 600px;
  margin: 0 auto;
}

@keyframes disappear {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* - 404.html - */

#main {
  display: table;
  width: 100%;
  height: 100vh;
  text-align: center;
}

.fof {
  display: table-cell;
  vertical-align: middle;
}

.fof h1 {
  font-size: 50px;
  display: inline-block;
  padding-right: 12px;
  animation: type 0.5s alternate infinite;
}

@keyframes type {
  from {
    box-shadow: inset -3px 0px 0px #888;
  }
  to {
    box-shadow: inset -3px 0px 0px transparent;
  }
}

