/* CSS files add styling rules to your content */

* {
    padding: 0;
    margin: 0;

}

body {
    height: 100vh;
    
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: -apple-system, system-ui, sans-serif;


}

p {
    position: absolute;
    z-index: 999;
    top: 100px;
    color: ghostwhite;
    font-size: 1em;
    text-align: center;
    
    
}

.deathvalley {
    z-index: 998;
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-image: url(https://cdn.glitch.com/4f2dcbc8-146f-49f1-a1a5-7f6ff0dfbf04%2Fdeathvalley.png?v=1578869667256);
    animation: fadeOut ease 3153600000s;
    -webkit-animation: fadeOut ease 3153600000s;
    -moz-animation: fadeOut ease 3153600000s;
    -o-animation: fadeOut ease 3153600000s;
    -ms-animation: fadeOut ease 3153600000s;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-moz-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-o-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-ms-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }


}

.sky {
    background-color: lightskyblue;
    z-index: 997;
    width: 100%;
    height: 100%;
    position: absolute;
}
