body {
    background: black;
}

h1 {
    width: 100%;
    position: fixed;
    color: red;
    font-family: 'Beth Ellen', cursive;
    text-align: center;
    transition: 1s ease-in;
    opacity: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

h1.in {
    opacity: 100;
}

h1.out {
    top: -100px;
}