*{ margin: 0; padding: 0; }
html, body{ width: 100%; }
img{
    display: block;

}

body{
    font-size: 100%;
    font-family: "Urbanist", serif;
    background: linear-gradient(to bottom,lightgrey,white);

}
.me{
    display:flex;
    flex-direction: row;
    align-items: baseline;
    height: calc(100vh - 140px);
    justify-content: space-between;

}

.me img{
    max-height: 100%;
    max-width: 100%;
}

a{
    text-decoration: none;
    color: grey;
}

.navbar{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 30px;
    height: 80px;
    position:relative;
}

.navigation{
    display: flex;
    align-items: center;
}
.navigation a{
    margin: 1em;
    color: inherit;
    text-decoration: none;
}
.navigation a:last-child{
    margin-right: 0;
}

.hidden{
    display: none;
}

.about{
    display:flex;
    flex-direction: column;
    margin: 30px;
    height: 100vh;
    justify-content: space-between;
}

.about h2{
    font-size: 2em;
    font-weight: bolder;
    margin-top: 60px;
}

.life{
    display:flex;
    flex-direction: column;
    align-self: center;
    justify-content: center;
    margin-left: 30px;
    margin-right: 30px;
    font-size: 1.2em;
    font-weight: lighter;
    height: calc(100vh - 140px);
    flex-basis: 50%;

}
.time{
    margin: 10px;
}
.time div{
    margin: 5px;
}


footer{
    border-color: gray;
    border-style: solid none none none;
    margin: 30px;
    padding-top: 10px;
}
footer a{
    margin-right: 20px;
    font-weight: lighter;
    text-decoration: none;
}


@media (max-width: 500px ) {

    .me{
        display: block;
        height: auto;
    }



    .about{
        height: 100%;
    }
    .life{
        font-size: 1em;;
        height: 100%;
    }
}




@media (min-width:501px) and (max-width: 900px){
    .me{
        display: block;
        height: auto;
    }

}