body {
    font-family: 'Courier New', Courier, monospace;
    background: #020024;
background: radial-gradient(circle,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.meme-generator {
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    width: 50%;
    height: 100vh;
    padding: 1rem;
}

.meme-generator img {
    width: 80%;
    height: auto;
    max-height: 60vh;
    object-fit: fill;
    border: .1rem solid black;
}

.meme-generator-btn {
    width: 50%;
    background-color: #111827;
    border: 1px solid transparent;
    border-radius: .75rem;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    flex: 0 0 auto;
    line-height: 1.5rem;
    padding: .75rem 1.2rem;
    font-size: 1.5rem;
    text-align: center;
    margin-top: 1rem;;
    text-decoration: none #6B7280 solid;
    text-decoration-thickness: auto;
    transition-duration: .2s;
    transition-property: background-color, border-color, color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, 0.2, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.meme-generator-btn:hover {
    background-color: #374151;
}

.meme-generator-btn:focus {
    box-shadow: none;
    outline: 2px solid transparent;
    outline-offset: 2px;
}

@media (min-width: 768px) {
    .meme-generator-btn {
        padding: .75rem 1.5rem;
    }
}

.meme-title{
    width: 80%;
    margin: 2rem .5rem;
}