﻿body {
    background-color: white;
}

header > div {
    position: absolute;
    top: 2rem;
    right: 5rem;
}

aside {
    position: relative;
    margin-left: 5rem;
    margin-right: 23rem;
    transition: margin-right ease-in-out 300ms;
}

.title {
    font-family: 'Big Shoulders Stencil Display', Verdana, sans-serif;
    font-size: 10rem;
    margin-bottom: -2.5rem;
    margin-top: 0;
    transition: font-size ease-in-out 300ms;
    transition: margin-bottom ease-in-out 300ms;
}

.byline {
    font-size: 1rem;
    font-family: 'Courier Prime', monospace;
    margin-left: 0.5rem;
    font-weight: bold;
    transition: font-size ease-in-out 300ms;
}

.description {
    margin-top: 15rem;
    font-size: 1rem;
    font-family: 'Courier Prime', monospace;
    font-weight: bold;
    transition: margin-top ease-in-out 300ms;
}

.echo {
    text-shadow: -1rem 1rem 5px pink, 
                 -2rem 2rem 15px grey,
                 -3rem 3rem 25px grey,
                 -4rem 4rem 35px grey;
}

a {
    color: black;
}

@media only screen and (max-height: 550px){
    .title {
        font-size: 6rem;
        margin-bottom: -1.5rem;
    }

    .byline {
        margin-top: 2rem;
        margin-left: 0.3rem;
        font-size: 0.6rem;
    }

    .description {
        margin-top: 8rem;
    }
}

@media only screen and (max-width: 800px){
    .description {
        margin-top: 37rem;
    }

    aside {
        margin-right: 5rem;
    }

    @media only screen and (max-height: 550px) {
        .description {
            margin-top: 20rem;
        }
    }
}

@media only screen and (max-width: 415px) {
    .title {
        font-size: 7rem;
    }

    .byline {
        font-size: 0.8rem;
        margin-top: 1.7rem;
        margin-left: 0.4rem;
    }

    header > div {
        left: 6rem;
    }

    .description {
        margin-top: 25rem;
    }
}


