body{
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;    
}
*{
    box-sizing: border-box;
    margin: 0;
}

.row{
    display: flex;
    flex-wrap: wrap;
}

.container{
    margin: auto;
}

header{
    position: absolute;
    left: 0px;
    right: 0px;
    border-bottom: 1px solid #ffffff;
    padding:0px 15px;
}

header .row{
    justify-content: space-between;
    align-items: center;
}

header .name{
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
}

header nav{

}

header nav ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

header nav ul li{
    display: inline-block;
    margin-left: 35px;
    
}

header nav ul li a{
    font-size: 15px;
    text-decoration: none;
    line-height: 72px;
    font-weight: 600;
    color: #ffffff;
}

.home{
    min-height: 100vh;
    background-image: url("img/cincyskyline.jpg");
    background-size: cover;
    background-position: center;
    padding: 15px;

}

.home .full-screen{
    min-height: 100vh;
}

.home .home-content{
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;

}

.home .home-content .block{
    flex: 0 0 75%;
    max-width: 75%;
    padding-left: 35px;
    margin-right: 10px;
    border-left: solid 5px #ffffff
}

.home .home-content .block h1{
    color: #ffffff;
    font-weight: 600;
    font-size: 60px;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}
.home .home-content .block h3{
    color: #ffffff;
    font-weight:500;
    font-size: 25px;
    margin: 0 0 10px;
    padding: 0;
}

.home .home-content .block .links{
    display: flex;
    width: 17%;
    margin-right: 20px;
    padding-right: 20px;

}

.home .home-content .block .linkedin a{
    border-radius: 4px;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all .5s ease;
    background-color: transparent;
}

.home .home-content .block .linkedin a:hover{
    background-color: #ffffff;
    color: black;
}

.home .home-content .block .github a{
    border-radius: 4px;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all .5s ease;
    background-color: transparent;
}

.home .home-content .block .github a:hover{
    background-color: #ffffff;
    color: black;
}

