#projects-container {
  margin-top: 4em;
  width: 100%; }
  #projects-container .project {
    padding: 0;
    margin-bottom: 2em;
    background-color: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 4px 4px 9px 0px rgba(50, 50, 50, 0.75);
    -moz-box-shadow: 4px 4px 9px 0px rgba(50, 50, 50, 0.75);
    box-shadow: 4px 4px 9px 0px rgba(50, 50, 50, 0.75);
    display: grid;
    grid-template-columns: auto;
    grid-column-gap: 1em; }
    #projects-container .project .project-img {
      width: 100%;
      height: 100%;
      grid-column: 1/2;
      position: relative; }
      #projects-container .project .project-img .img-fade {
        z-index: 2;
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2), white); }
      #projects-container .project .project-img img {
        width: 100%;
        height: 100%;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px; }
    #projects-container .project .project-info {
      grid-column: 2/4;
      padding-top: 1em;
      padding-bottom: 1em;
      padding-right: 1em; }
    #projects-container .project .project-skills ul {
      list-style: none;
      padding: 0; }
      #projects-container .project .project-skills ul li {
        padding: 5px;
        display: inline-block;
        border: 3px solid red;
        border-radius: 6px;
        font-weight: 700; }
    #projects-container .project .project-links a {
      padding: 0.5em;
      text-decoration: none;
      background-color: aliceblue;
      border-radius: 6px; }

* {
  box-sizing: border-box; }

html,
body {
  height: 100%; }

body {
  width: 100%;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom right, #d3cce3, #e9e4f0);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed; }

.main-container {
  max-width: 1000px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", Times, serif; }

nav {
  width: 100%;
  font-family: Verdana; }
  nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end; }
    nav ul li a {
      padding: 1em;
      text-decoration: none; }

.main-header {
  display: flex;
  justify-content: center;
  align-items: center; }
