body {
    font-family: 'Work Sans', sans-serif;
}

.about {
    font-size: 18px;
    font-weight: 300;
    color: blue;
    margin-bottom: 24px;
}

.avatar {
    width: 220px;
    height: 220px;
    margin-bottom: 40px;
    border-radius: 50%;
    /*object-fit: cover;*/
    box-shadow: 5px 5px 0px 0px black;
    /* h-offset v-offset blur spread color*/
}

.button {
    background-color: black;
    color: white;
    padding: 12px 24px;
    /* top-bot left-right */
    text-decoration: none;

    /*padding: 12px 8px 16px 24px;*/
    /*start from top right bot left = clockwise*/
}

.contact {
    margin-bottom: 48px;
}

.container {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.7)), 
    url(https://images.unsplash.com/photo-1498050108023-c5249f4df085?q=80&w=872&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom right;
    min-height: 100vh;
    padding: 128px;
}

@media screen and (max-width: 768px) {
    .container{
        padding: 48px;
    }
}

.content {
    max-width: 500px;
}

.contact-item {
    margin-bottom: 4px;
}

.contact-icon {
    margin-right: 12px;
    width: 16px;
}

.job {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.name {
    font-size: 48px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
    .name{
        font-size: 36px;
    }
}

.title {
    font-size: 48px;
    font-weight: 600;
    text-align: center;

}