/* Color scheme:
#fcfcfc
#dc4d53
#d1676d
#c78287
#bd9da2 
	https://vectr.com/
*/

body {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	color: #d1676d;
    margin: 0;
}

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

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

.fof h1 {
	font-size: 3em;
	display: inline-block;
	padding-right: 12px;
	animation: underline 1s alternate infinite;
}

.fof a:link {
  color: #c78287;
}

.fof a:visited {
  color: #c78287;
}

.fof a:hover {
  color: #c78287;
}

.fof a:active {
  color: #c78287;
}

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