html {
    background-image: url("space.gif");
    animation-name: bgLoop;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

#mobile {
    display: none;
}

h1 {
    color: azure;
    font-size: 5vh;
    margin-left: .5em;
}

@keyframes bgLoop {
    0% {
        background-position: right 200px bottom 200px;
    }

    100% {
        background-position: right 0px bottom 0px;
    }
}


.fireplace {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}




img {
    max-width: 100%;
}

button {
    font-size: large;
    padding: .5em;
    display: block;
    margin: 0 auto;
    margin-bottom: 2em;
}

p,
ul {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    color: maroon;
    padding: .75em;

}

#h {
    font-size: 2em;
    margin-bottom: 1em;
    font-weight: bold;

}

ul {
    margin-left: 1.5em;
}