body {
  font-family: 'Source Sans Pro', sans-serif;
  margin: 0;
  background-color: black;
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
}

.photo {
  position: fixed;
  border: 8px solid white;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.5), 2px 2px 5px rgba(0, 0, 0, 0.5);
  z-index: 1;
  opacity: 0;
  transform-origin: top left;
}

.main-text {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 999;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.main-text h1 {
  font-family: 'Righteous';
  font-size: 4rem;
  margin-bottom: 0;
  user-select: none;
}

.main-text h1 .dot {
  animation: flicker .5s infinite;
}

.main-text p {
  font-size: 1.2rem;
}

.email-link {
  color: white;
  text-decoration: none;
}

@keyframes flicker {

  0%,
  100% {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  45% {
    color: #ff4a3d;
    text-shadow: 2px 2px 4px rgba(255, 0, 0, 0.5);
  }

  55% {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
}