html {
    height:100%;
}

body {
    padding : 0px;
    margin: 0px;
    height: 100%;
    width: 100%;

    font-family: 'Share Tech', sans-serif;
    background-color: rgb(23,36,48);
    background-color: rgb(23,36,48);
}

#animation {
    height: 100%;
    width: 100%;

    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index:-1;
}

#container {
    background-image: linear-gradient(rgba(23,36,48,0.0), rgba(23,36,48,1.0)), url('background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    margin: 0px;
    width: 100%;
    height: 100%;


    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

@media screen and (min-height: 1050px) {
    #container {
        justify-content: space-around;
    }
}

.content {
    color: rgb(238,194,57);
    text-shadow: 0 0 .2em rgba(256,214,77,.74);
    background-color: rgba(0, 0, 0, 0.6);
    display: block;
    padding: 50px;
    text-align: center;

    font-size: 110%;
}

.content a {
    color: rgb(7,246,216);
    text-shadow: 0 0 .2em rgba(27,256,236,.74);
    text-decoration: none;
    -webkit-transition: all 333ms cubic-bezier(0.42, 0, 0.58, 1);
    -moz-transition: all 333ms cubic-bezier(0.42, 0, 0.58, 1);
    -o-transition: all 333ms cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 333ms cubic-bezier(0.42, 0, 0.58, 1);
}

.content a:hover {
    color: rgb(27,256,236);
    text-shadow: 0 0 .2em rgba(27,256,236,.74), 0 0 .6em rgba(256,214,77,.74);
}

.escalator {
    width: 30%;
    display: none;
}

.titleimg {
    width: 70%;
    display: none;
    margin-left: auto;
    margin-right: auto;
    margin-top: -1.5ex;
    margin-bottom: -1.5ex;
}

.logosmall {
    width: 70%;
    display: none;
}

.logo {
    width: 90%;
    display: none;
    margin-left: auto;
    margin-right: auto;
    margin-top: -1.5ex;
    margin-bottom: -2.5ex;
}

h1 {
    font-family: 'Audiowide', sans-serif;
    font-weight: normal;
    color: rgb(226,115,199);
    text-shadow: 0 0 .4em rgba(246,135,219,.74);
}

h2 {
    font-family: 'Audiowide', sans-serif;
    margin-bottom: 10px;
    font-weight: normal;
    color: rgb(226,115,199);
    text-shadow: 0 0 .2em rgba(246,135,219,.74);
}

h3 {
    font-family: 'Audiowide', sans-serif;
    margin-bottom: 5px;
    font-weight: normal;
    color: rgb(226,115,199);
    text-shadow: 0 0 .2em rgba(246,135,219,.74);
}

.titletext {
    display: none;
}

@media screen and (min-width: 500px) {
    .logo {
        display: block;
    }
    .escalator {
        display: block;
    }
    .titleimg {
        display: inline;
    }
}

@media screen and (max-width: 500px) {
    .logosmall {
        display: inline;
    }
    .titletext {
        display: inline;
    }
}
