* {
    font-family: 'Pacifico', 'Lilita One', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fff0f5;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    max-width: 480px;
    min-height: 50vh;
    padding: .5rem;
    margin: 14rem 1rem;
    background-color: #fbe6ed;
    border-radius: 1rem;
    box-shadow: 0 .5rem .5rem 0 rgba(0, 0, 0, 0.150);
}

.titulo {
    color: #ff69b4;
    font-size: 1.5rem;
    margin: 1.5rem 1rem;
}

#imagemGatinho {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#imagemGatinho img {
    background-color: #ff69b4;
    border-radius: .30rem;
    max-width: 380px;
    max-height: 300px;
    box-shadow: 0 .5rem .5rem 0 rgba(0, 0, 0, 0.150);
}

#gerarGatinho {
    border: none;
    max-width: 100%;
    margin: 1rem;
    padding: .7rem;
    font-family: 'Lilita One', sans-serif;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: #fbe6ed;
    background: #ff69b4;
    box-shadow: 0 .5rem .5rem 0 rgba(0, 0, 0, 0.150);
    border-radius: .25rem;
    cursor: pointer;
}

#gerarGatinho:hover {
    background: #b21c67;
}


@media screen and (min-width:780px) {
    .container {
        max-width: 100%;
    }

    .titulo {
        font-size: 3rem;
    }

    #gerarGatinho {
        font-size: 2rem;
        padding: 1rem;
        width: 325px;
        border-radius: 2rem;
    }

}