*{
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body{
    display: flex;
    height: 100vh;
    width: 100vw;
    background-image: url(/images/UnderContruction_clear_2048.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    
}

.container{
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    text-align: center;
    justify-content: center;
    align-items: center;
}
h1{
    display: inline-block;
    position: relative;
    font-size: 4em;
    vertical-align: center;
    color: aliceblue;
    text-shadow: 5px 5px 5px grey;
}

p{
    display: inline-block;
    position: relative;
    font-size: 1em;
    color: aliceblue;
}

footer{
    display: flex;
    position: absolute;
    font-size: 0.8rem;
    bottom: 0;
    width: 100vw;
    height: 10vh;
    justify-content: center;
    align-items: center;
    align-content: center;
    color: rgb(61,109,161);
}



