body {
    padding: 0;
    text-align: center;
    font-family: 'Permanent Marker', cursive;
    background: linear-gradient(white, blue);
    height: 90%;
    color: #e98a1d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#background {
    background-image: url("img/01.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100%;
    width: 100%;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .4;
}

h1 {
    text-shadow: 0px 3px 0px black;
    line-height: 4.5rem;
    transform: rotate(-9deg);
    font-size: 5.5rem;
}

#stage {
    width: 90%;
    font-size: 10rem;
    margin-bottom: 2rem;
}

button {
    cursor: pointer;
    border: 0;
    padding: .5rem 2rem;
    border-radius: .75rem;
    background: #e98a1d;
    color: white;
    font-family: inherit;
    font-size: 20px
}

button:hover {
    color: #e98a1d;
    background: white;
    outline: 2px solid #e98a1d;
}