:root {
    --background-color: #000000;
    --text-color: #BFBFBF;
    --link-border-color: #E5E5E5;
  }

html, body {
    margin: 0;
    padding: 0;
    background: var(--background-color);
    font-family: 'Overpass', sans-serif;
    font-size: 18px;
}

body {
    margin: auto;
    max-width: 1080px;
}

.work-link,
.project-image {
    width: 100%;
    height: 100%;
}

.project-image {
    transition: transform .2s;

}

.project-image:hover {
    transform: scale(1.05);
    transition: transform .2s;
}

.fa-instagram {
    font-size: 30px;
}

.instagram {
    color: var(--text-color);
}

.fa-instagram:hover {
    transform: scale(1.05);
    font-weight: 550;
}