body {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#background {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;

    object-fit: cover;
    object-position: center;
}

h1 {
    position: relative;
    margin-bottom: 1rem;
    z-index: 9;

    font-family: 'Brush Script MT', cursive;
    font-size: 2.5rem;
    filter: drop-shadow(0 0 1rem #000);
}
h2 {
    position: relative;
    margin: 0;
    z-index: 9;
    display: none;

    font-family: 'Brush Script MT', cursive;
    font-size: 1.5rem;
    filter: drop-shadow(0 0 1rem #000);
}
h3 {
    position: relative;
    margin: 0;
    z-index: 9;
    display: none;

    font-family: 'Brush Script MT', cursive;
    font-size: 1rem;
    font-weight: normal;
    filter: drop-shadow(0 0 1rem #000);
}

button {
    position: relative;
    margin: 0 1rem;
    padding: 0.5rem 1.5rem;
    z-index: 99;

    background: #f0f0f0;
    border-radius: .5rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.5);

    font-family: 'Brush Script MT', cursive;
    font-size: 1rem;

}