* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;  
}

body {
    min-height: 100%;
    background: #ffffff;
    font-family: sans-serif;
    font-weight: 400;
    color: #222;
    font-size: 14px;
    line-height: 26px;
    padding-bottom: 50px;
}

.container {
    max-width: 800px;   
    background: #ffffff;
    margin: 0px auto 0px; 
    padding: 40px;
}

.header {
    margin-bottom: 30px;

    .full-name {
        font-size: 40px;
        text-transform: uppercase;
        line-height: 35px
    }

    .first-name {
        font-weight: 700;
    }

    .last-name {
        font-weight: 300;
    }

    .contact-info {
        margin-bottom: 30px;
    }

    .image-cutout-container {
        margin-bottom: 20px;
    }
    
    .image-cutout {
        width: 75%;
        height: auto;
        max-width: 468px;
        border-radius: 50%;
        overflow: hidden;
        border: blur 10px
    }
    
    .email,
    .phone {
        color: #999;
        font-weight: 300;
    } 

    a {
        text-decoration: none;
        color: #000;
    }

    a:hover {
        text-decoration: underline;
        color: #999;
    }

    .position {
        font-weight: bold;
        display: inline-block;
        margin-right: 10px;
        text-decoration: underline;
    }
}









