body {
    background-color: #262626;
    color: white;

    font-family: 'Open Sans', sans-serif;
    text-align: center;

    margin: 0;

    min-height: 100vh;

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

.img-dow {
    height: 60vmin;
    width: 40vmax;

    min-height: 250px; min-width: 250px;
    max-height: 340px; max-width: 340px;

    margin-top: 12px; 

    user-select: none; -webkit-user-select: none;
}

.item {
    flex-grow: 1;
}

.title {
    font-family: 'Vast Shadow', cursive;
    font-size: 48px;

    margin: 6px 24px;
}

footer {
    color: #484848;
}

.author {
    margin: 0 0 6px;
}

@media only screen
    and (max-width: 600px) and (min-width: 240px)
    and (max-height: 395px) {
    .img-dow {
        min-height: 200px; min-width: 200px;

        margin-top: 6px; 
    }

    .title {
        font-size: 40px;

        margin: 0 12px;
    }

    .author {
        font-size: 14px;    
    }
}
