body {
  font-family: monospace;
  background-color: rgb(255, 232, 221);
  width: 100%;
}

.iconContainer {
  padding-top: 100px;
}

.linkedinIcon {
  height: 40px;
  width: auto;
}

:hover.linkedinIcon {
  opacity: .5;
}

.itchIcon {
  height: 40px;
  width: auto;
}

:hover.itchIcon {
  opacity: .5;
}

.githubIcon {
  height: 40px;
  width: auto;
}

:hover.githubIcon {
  opacity: .5;
}

.profilePic {
  height: 100px;
  width: 100px;
  border-radius: 8px;
  border-style: solid;
  border-width: 4px;
}

.name {
  font-size: 60px;
  text-align: left;
  font-weight: bold;
  padding-top: 70px;
}

.bio {
  font-size: 28px;
  text-align: left;
  margin-top: 30px;
  text-align: left;
  font-family: 'Gill Sans';
}

.lineBreak {
  margin-top: 30px;
  border-bottom: solid 4px;
}

@-webkit-keyframes slideFromLeft {
  from {
    -webkit-transform: translateX(0);
    -webkit-opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    -webkit-opacity: 1;
  }
}

@keyframes slideFromLeft {
  from {
    transform: translateX(0);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.projectContainer {
  opacity: 0;
  padding: 60px;
  margin: 100px;
  margin-right: 70px;
  margin-left: -10px;
  border-style: solid;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-width: 4px;
  border-left: none;
  background-color: white;
  -webkit-animation: slideFromLeft .5s ease-in forwards;
  -webkit-animation-timeline: view();
  -webkit-animation-range: entry 50%;
  animation: slideFromLeft .5s ease-in forwards;
  animation-timeline: view();
  animation-range: entry 50%;
}

@-webkit-keyframes slideFromRight {
  from {
    -webkit-transform: translateX(0);
    -webkit-opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    -webkit-opacity: 1;
  }
}

@keyframes slideFromRight {
  from {
    transform: translateX(0);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.sorceryScrambleProjectContainer {
  opacity: 0;
  padding: 60px;
  margin: 100px;
  margin-right: -10px;
  margin-left: 70px;
  border-style: solid;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-width: 4px;
  border-right: none;
  background-color: white;
  -webkit-animation: slideFromRight .5s ease-in forwards;
  -webkit-animation-timeline: view();
  -webkit-animation-range: entry 50%;
  animation: slideFromRight .5s ease-in forwards;
  animation-timeline: view();
  animation-range: entry 50%;
}

.projectDetailsContainer {
  text-align: left;
  padding-left: 60px;
}

.projectDetailsContainer {
  text-align: left;
  padding-right: 60px;
}

.header {
  font-size: 40px;
  font-weight: 700px;
  padding-bottom: 8px;
}

.screenshot {
  width: 300px;
  height: 100%;
  padding: 0px;  
  border-style: solid;
  border-width: 4px;
  border-radius: 8px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.branchesScreenshot {
  width: 600px;
  height: 100%;
  padding: 0px;  
  border-style: solid;
  border-width: 4px;
  border-radius: 8px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.techLogo {
  width: 40px;
  height: auto;
  border-width: 4px;
  border-style: solid;
  border-radius: 8px;
  align-items: left;
  margin-bottom: 24px;
  background-color: white;
}

.details {
  font-size: 20px;
  text-align: left;
  font-family: 'Gill Sans';
  padding-bottom: 40px;
} 

.link {
  text-align: center;
  font-size: 18px;
  width: 200px;
  height: auto;
  border-width: 4px;
  border: solid;
  border-radius: 8px;
  border-width: 4px;
  padding: 32px;
  padding-top: 8px;
  padding-bottom: 8px;
}

:hover.link {
  background-color: rgb(0, 0, 0);
  color: white;
  cursor: pointer;
}
