/* @import url('https://fonts.googleapis.com/css?family=Arimo&display=swap'); */


#about_me_grid{
    padding-top: 20px;
    padding-bottom: 20px;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr;
    /*grid-template-rows:1fr 1fr;*/
}

@media only screen and (max-width: 996px){
    #about_me_grid{
        grid-template-columns: 1fr;
        grid-template-rows: initial;
        background: lightblue;
    }
}


.card{
    position: relative;
    background: white;
    box-sizing: border-box;
    margin: 10px;
    padding: 20px;
    border-radius:  1em;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.09);
    font-family: 'Arimo', sans-serif;
    font-weight: 500;
}


.card > h1{
    text-align: center;
}


#profile > h1 {
    text-align: left;
}
#profile > img{
    width: 100px;
    height: 100px;
    border-radius: 30%;
    position: absolute;
    left: 20px;
    top: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.09);
}

#profile > h1{
    margin-top: 15px;
    padding-left: 120px;
}

#profile > h2{
    padding-left: 120px;
    margin-top: -15px;
    margin-bottom: 40px;
}



@media only screen and (max-width: 350px) {
    .card{
        font-size: 13px;
    }
}

.card > p > a{
   text-decoration: underline;
   color: #000047;
}


.grid{

}

