* {
    text-align: center;
    color: #fff;
    font-family: ivystyle-sans, sans-serif;
    font-weight: 400;
    font-style: normal;
}

body {
    font-size: 16px;
    padding: 0 2em;
    margin: 0;
}

img{
  image-rendering: crisp-edges;
  /* Safari seems to support, but seems deprecated and does the same thing as the others. */
  image-rendering: -webkit-optimize-contrast;
}

#background {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100vh;
    z-index: -2;
    object-fit: cover;
}

.wolf{
    position: fixed;
    z-index: -1;
    width: 800px;
    animation-name: play;
    animation-duration: 5s;
    animation-delay: 4s;
    animation-fill-mode: backwards;
}

main {
    display: flex;
    min-width: 100%;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

h1 {
    font-size: 8em;
    margin: 1em 0;
    line-height: 1em;
    letter-spacing: .1em;
}

h1 small {
    display: block;
    font-size: .3em;
    letter-spacing: .05em;
    animation-name: play;
    animation-duration: 4s;
    font-family: ivypresto-text, serif;
    font-weight: 300;
    font-style: italic;
}

h1 span{
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
}

h1 .loomi {
    animation-name: play;
    animation-delay: 3s;
    animation-fill-mode: backwards;
    width: 400px;
}

h1 .dot {
    animation-name: play;
    animation-delay: 3.5s;
    animation-fill-mode: backwards; 
    width: 14px;
    margin: 0 10px;
}

h1 .studio {
    animation-name: play;
    animation-delay: 3.5s;
    animation-fill-mode: backwards; 
    width: 422px;
}

h2 {
    font-size: 1.1em;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .5em;
    animation-name: play;
    animation-duration: 2s;
    animation-delay: 4s;
    animation-fill-mode: backwards;
    color: #b0b0b0;
}

p {
    font-size: 1em;
    letter-spacing: .1em;
    animation-name: play;
    animation-duration: 1s;
    animation-delay: 6s;
    animation-fill-mode: backwards;
    color: #b0b0b0;
}

a {
    color: #b0b0b0;
    transition-duration: .5s;
}

a:hover {
    color: #fff;
}

@media screen and (max-width: 900px) {
    body {
        font-size: 14px;
    }
    .wolf{
        width: 400px;
    }
    h1 {
        font-size: 6em;
    }
    h1 .loomi{
        width: 150px;
    }
    h1 .dot{
        width: 5px;
        margin: 0 3px;
    }
    h1 .studio{
        width: 158px;
    }
    h2 {
        font-size: 1em;
    }
}

@keyframes play {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}