body{font-family: arial; font-size: 18px; background-color:rgb(89, 117, 167);color:rgb(228, 226, 226)}
a {
    color:yellowgreen;
    text-decoration: none;
}



img {
    width: 400px;
    border-radius: 6px;
    transition: all .15s;
}
/* img:hover {
    width: 320px;
    transition: all .15s;
} */

.blurb {
    text-align: center;
    width:400px;
    word-wrap: break-word;
}

.button-container {
    display: grid;
    place-items: center;
    gap: 1em;
    grid-template-columns: 1fr;
}

.nice-button {

    border: none;
    padding: 10px 20px;
    width: 300px;
    font-size: 18px;
    color:white;
    border-radius: 6px;
    background-color:rgb(60, 67, 106);
    cursor: pointer;
    transition: all .15s;
}

.nice-button:hover {
    font-size: 20px;
        transition: all .2s;
        background-color:rgb(80, 89, 140);
}
#wrapper {
    display:grid;
    place-items: center;
}
#content {
    display:grid;
    place-items: center;
    gap: 1em;
}

@media screen and (min-width: 1024px)  {
    #content{
        zoom: 1.25;
    }

    .blurb {
        width:640px;
    }

    .button-container {
        grid-template-columns: 0.5fr 0.5fr;
    }
    
}