:root {
  --darkMain: #00449e;
  --textMain: #357edd;
  --lightMain: #96ccff;
  --background1: #f6fffe;
  --background2: #fffceb;
  --background3: #e8fdf5;
  --background4: #ffdfdf;
  --unsaturated1: #bdc7ee;
  --unsaturated2: #8e96c7;
  --saturated: #da5e58;
  --light: #f6d0a9;
}

body {
  background-image: linear-gradient(
    var(--background1),
    var(--background2),
    var(--background3),
    var(--background4)
  );
}

p {
  color: var(--textMain);
}

h2 {
  color: var(--textMain);
}

.sectionDivs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.fa {
  padding: 20px;
  font-size: 60px;
  width: 60px;
  height: 60px;
  text-align: center;
  text-decoration: none;
  border-radius: 25%;
  display: inline;
}

.fa-linkedin {
  background: #007bb5;
  color: white;
}

.fa-github {
  background: #242424;
  color: white;
}

.halfHeight {
  opacity: 1;
}

.fullHeight {
  opacity: 1;
}

.zTop {
  z-index: 10;
}

#skills {
  background-image: linear-gradient(var(--unsaturated1), var(--unsaturated2));
  font-size: 1.5rem;
  font-weight: 600;
}

#titleText {
  color: var(--textMain);
}

#headerImg {
  border-radius: 50%;
  height: 240px;
  width: 240px;
}

#personalWebsiteLinkImage {
  height: 300px;
  width: 300px;
}

#keepAllCentered {
  max-width: 64rem;
  margin: 0 auto;
}

#navBar {
  width: 100%;
  float: left;
  margin: 0 0 1em 0;
  padding: 0;
}

#navList {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 60em) {
  .sectionDivs {
    flex-wrap: nowrap;
  }
  .fullHeight {
    height: 100vh;
  }
  .halfHeight {
    height: 50vh;
  }
}
