body {
    color: #333;
}

h1 {
    font-size: 5.5rem;
    font-weight: 400;
    margin-top: 1rem;
    margin-bottom: 5rem;
    line-height: 70%;
}

h1 > small {
    font-size: 40%;
}

h2 {
    font-size: 3rem;
    font-weight: 400;
    margin: 0;
}

p {
    font-size: 1.3rem;
}

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

a:hover {
    text-decoration: underline;
}

.contact-list {
    list-style: none;
    font-size: 1.4rem;
    width: auto;
}

.container {
    margin: 1rem;
    max-width: 1300px;
}

.icon {
    height: 1em;
    position: relative;
    top: -2px;
    margin-right: 20px;
}

.color-primary {
    color: #448;
}

.flex-container {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.profile-image {
    height: 12rem;
    align-self: center;
    margin-top: 3rem;
}

.vertical-divider {
    display: none;
    height: 10rem;
    border-left: 2px solid #0000001a;
    left: 50%;
    margin: 0 2rem;
}

@media only screen and (min-width: 480px) {
    h1 {
        font-size: 8rem;
    }
}

@media only screen and (min-width: 768px) {
    h1 {
        font-size: 10rem;
    }

    p {
        font-size: 1.7rem;
    }

    .flex-container {
        flex-direction: row;
        align-items: center;
    }

    .vertical-divider {
        display: inline;
    }

    .profile-image {
        margin-top: 0;
    }
}

@media only screen and (min-width: 1200px) {
    .container {
        margin-left: 3rem;
        margin-top: 5rem;
    }
}