*{
    transition: all 0.6s;
}

html {
    height: 100%;
    background-color: black;
}

body{
    font-family: 'Lato', sans-serif;
    color: #888;
    margin: 0;
}

#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 .5s alternate infinite;
}

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

.button{
    display: inline-block; 
    padding: 10px 20px; 
    background: #007bff; 
    color: #fff; 
    text-decoration: none; 
    border-radius: 5px;
    display: block;
    width: fit-content;
    height: auto;
    border: none;
    position: center;
    cursor: pointer;
    text-align: center;
    margin-left: auto;
    margin-right: auto;

}

.button:hover{
    background: #0056b3;
    color: #fff;
}

.button:active{
    transform: scale(0.98);
}
