@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300");

body {
    background-color: white;
    font-family: "Source Sans Pro", Helvetica, sans-serif;
    font-weight: 300;
    margin: 0;
    padding: 0;
}
.split {
    height: 100%;
    width: 50%;
    position: fixed;
    z-index: 1;
    top: 0;
    overflow: hidden;
}
.left {
    left: 0;
    align-items: center;
    display: flex;
}
.right {
    right: 0;
    background-image: url('./code.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.75;
}
.content {
    padding: 100px;
}
h1 {
    font-size: 64px;
    font-weight: 300;
    margin: 0 0 24px 0;
    line-height: 1;
}
p {
    font-size: 24px;
    margin: 0 0 20px 0;
    line-height: 1.65;
}
p:last-of-type {
    margin: 0;
}
a {
    text-decoration: none;
    color: #0a66c2;
}
@media (max-width: 1200px) {
    .split {
        height: 50%;
        width: 100%;
    }
    .left {
        position: absolute;
        top: 50%;
        height: auto;
    }
    .right {
        top: 0;
    }
    .content {
        padding: 64px;
    }
    h1 {
        font-size: 42px;
        margin: 0 0 16px 0;
    }
    p {
        font-size: 20px;
        line-height: 1.5;
        margin: 0 0 14px 0;
    }
}

@media (max-width: 768px) {
    .split {
        position: absolute;
    }
    .content {
        padding: 40px;
    }
    h1 {
        font-size: 36px;
    }
    p {
        font-size: 18px;
    }
}