html, body {
    background-image: linear-gradient(
        45deg,
        cornflowerblue, plum
    );
    margin: 0;
    height: 100%;
    width: 100%;
    display: grid;
    justify-items: center;
}

.main, .center, .welcome, .links, #link, .link {
    display: grid;
    justify-items: center;
}

.main {
    place-items: center;
}

.center {
    width: 80%;
    max-width: 700px;
    grid-template-columns: 1fr 1fr;
    padding: 3rem;
    background-image: linear-gradient(
        -135deg, 
        cornflowerblue,plum
    );
}

.border-gradient {
    border: 3rem solid;
    border-image-slice: 1;
    border-width: 5px;
}

.border-gradient-blue-plum {
    border-image-source: linear-gradient(
        45deg, 
        cornflowerblue, plum
    );
}

.welcome {
    text-align: center;
}

span, div.container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;    
}

span {
    background-color: rgba(100, 149, 237, 0.3);
    box-shadow: 0rem 0rem 1rem rgba(100, 149, 237,.5);
    border-radius: 1rem;
    line-height: 2;
}


div.links {
    grid-auto-columns: auto;
    width: 100%;
}

div#link {
    padding: .25rem;
    width: 80%;
}

.link {
        width: 100%;
        border-radius: 3rem;
        padding: 1rem;
        background-color: white;
        border: .1rem solid plum;
}

#link img{
    width: 25px;
    height: 25px;
}

.link:hover > img.zoom:hover {
    transform: scale(2.0);
    transition: all 0.3s ease-in-out;
}

.link:hover {
    background: pink;
    transition: all .3s ease-in-out;
}

/* div.container{
    border-radius: 50rem;
    height: 10rem;
    width: 10rem;
    background-color: cornflowerblue;
    border: .4rem solid orange;
    margin: 1rem;
} */

div#aaron.child {
    -webkit-transform: scale(1);
    -webkit-transition: all 0.3s ease-in-out;
    background: url(/images/aaron.png);
    border-radius: 50rem;
    background-size: contain;
    position: relative;
    overflow: hidden;
    height: 10rem;
    width: 10rem;
    background-color: cornflowerblue;
    border: .4rem solid orange;
    margin: 1rem;
}

div#aaron.child:hover {
    /* background: plum; */
    -webkit-transform: scale(1.5);
    -webkit-transition: all 0.3s ease-in-out;
    /* border: 1rem black solid; */
}

@media(max-width:700px){ 
    .center {
        display: grid;
        max-width: 60%;
        grid-template-columns: 1fr;
    }
}