:root {
  --systemBackgroundColor: white;
  --systemGroupedBackgroundColor: #EBEBF1;

  --entryBackgroundColor: white;
  --entryShadowColor: rgba(0, 0, 0, 0.25);

  --primaryLabelColor: black;
  --secondaryLabelColor: #777777;

  --borderColor: #CCCCCC;

  --primaryGradientColor: #027DFF;
  --secondaryGradientColor: #00BC7D;

  
  --contentWidth: 70rem;

  --profilePictureStackSize: 160px;
  --profilePicturePrimaryBorderWidth: 10px;
  --profilePictureSecondaryBorderWidth: 4px;
}

body {
  padding-top: 5rem;

  background: var(--systemGroupedBackgroundColor);
  background: linear-gradient(var(--systemBackgroundColor), var(--systemGroupedBackgroundColor) 47rem);
  background-repeat: repeat-x;

  font-family: Avenir Next;
}

hr {
  border: 0.5px solid var(--borderColor);
}

#intro {
  max-width: var(--contentWidth);
  margin-top: 0px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 64px;
  color: var(--primaryLabelColor);
  text-align: left;
}

#introTopBlock {
  display: flex;
  flex-direction: row;
  gap: 48px;
  margin-left: 16px;
  margin-right: 16px;
}

#introProfilePictureStack {
  width: var(--profilePictureStackSize);
  min-width: var(--profilePictureStackSize);
  height: var(--profilePictureStackSize);
  min-height: var(--profilePictureStackSize);
  position: relative;
}

.introProfilePicturePrimary {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  outline: var(--profilePicturePrimaryBorderWidth) solid var(--primaryGradientColor);
}

.introProfilePictureSecondary {
  position: absolute;
  top: 75%;
  left: 75%;
  width: 30%;
  height: 30%;
  border-radius: 50%;
  outline: var(--profilePictureSecondaryBorderWidth) solid var(--systemGroupedBackgroundColor);
}

#introTitleBlock {
  display: flex;
  flex-direction: column;
  gap: 16px;
  vertical-align: middle;
  margin-top: auto;
  margin-bottom: auto;
}

#introTitle {
  margin: 0px;
  margin-top: -16px;
  margin-bottom: -16px;
  font-size: 84;
  background: linear-gradient(135deg, var(--primaryGradientColor), var(--secondaryGradientColor));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

#introSubtitle {
  margin: 0px;
  font-size: x-large;
  font-weight: bold;
}

#introSubtitleTag {
  white-space: nowrap;
}

#introList {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
  padding-bottom: 8px;
  font-size: large;
}

#introKeyword {
  font-weight: bold;
  white-space: nowrap;

  border-radius: 500px;

  color: var(--keywordColor, var(--primaryLabelColor));
}

#introKeywordThemed {
  font-weight: bold;
  white-space: nowrap;

  border-radius: 500px;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 6px;
  padding-right: 6px;

  color: var(--keywordColor, var(--primaryLabelColor));
  border: 4px solid var(--keywordColor, var(--primaryLabelColor));
}

#socialIconsContainer {
  display: flex;
  gap: 16px;
}

#socialIcon {
  width: 40px;
  height: 40px;
  background-color: var(--systemBackgroundColor);
  border-radius: 50%;
  box-shadow: 0px 0px 16px var(--entryShadowColor);
  border: 8px solid var(--entryBackgroundColor);
}

#socialIcon:hover {
  transform: scale(1.25);
}

#content {
  max-width: var(--contentWidth);
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 96px;
  margin-left: auto;
  border-radius: 8px;
  color: var(--primaryLabelColor);
  text-align: left;
}

.contentHeader {
  margin: 0px;
  padding-left: 0px;
  text-align: left;
}

.contentHeader p {
  margin: 0px;
  margin-top: -8px;
}

.contentHeader a {
  color: var(--primaryLabelColor)
}

.entry {
  background-color: var(--entryBackgroundColor);
  box-shadow: 0px 0px 10px var(--entryShadowColor);
  border-radius: 36px;
  padding: 24px;
  overflow: hidden;
}

table {
  border-collapse: collapse;
}

.viewMoreButton {
  margin-top: 16px;
}

#projects {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 16px;
}

#projectEntry {
  text-align: left;
}

.projectTitleGroup {
  display: flex;
  align-items: center;
  height: 80px;
  line-height: 1.5;
}

.projectLogo {
  float: left;
  width: 80px;
  height: 80px;
  padding-right: 8px;
}

.projectName {
  margin: auto;
}

.projectSubname {
  margin: auto;
}

.projectTextGroup {
  line-height: 1.8;
  padding-left: 4px;
  color: var(--secondaryLabelColor);
}

.projectTextType {
  font-weight: bold;
}

.projectDescription {
  line-height: 1.5;
  padding-left: 4px;
  color: var(--primaryLabelColor);
}

.projectImagesContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: auto;
  height: 250px;
}

.projectScreenshot {
  max-width: 100%;
  max-height: 280px;
}

.projectMobileVideo {
  max-width: calc(100% - 16px);
  max-height: 256px;
  border-radius: 42px;
  border: 8px solid white;
}

.projectViewGroup {
  display: flex;
  padding-top: 8px;
  justify-content: flex-start;
}

.projectViewLink {
  float: left;
  height: 48px;
  margin-top: 16px;
  margin-right: 32px;
}

.projectViewLink:first-child {
  margin-left: 0px;
}

#projectViewLinkAppStoresvg {
  border-radius: 0%;
}

#experience {
  position: relative;
}

.experienceCompany {
  display: inline-block;
  position: relative;
  color: white;
  left: -24px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  padding: 8px;
  padding-left: 24px;
  padding-right: 28px;
  margin-bottom: 0px;
  background-color: var(--experienceColor);
}

.experiencePosition {
  margin-bottom: 0px;
}

#experienceEntry {
  margin-bottom: 32px;
  padding-top: 8px;
  padding-right: 24px;
  padding-left: 24px;
  padding-bottom: 8px;
}

.experienceRoleBorder {
  background-color: var(--experienceTranslucentColor);
}

.experienceRole:nth-child(2) {
  margin-top: 16px;
}

.experienceRole:not(:nth-child(2))>.experienceRoleBorder {
  width: 64px;
  height: 8px;
  margin-top: 24px;
  margin-bottom: 24px;
  margin-left: -24px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.experienceDetails {
  overflow: hidden;
  color: var(--secondaryLabelColor);
  margin-bottom: -8px;
}

.experienceDetails p {
  float: left;
}

.experienceDescriptionList {
  padding-left: 16px;
  -webkit-text-size-adjust: 100%;
}

li:not(:first-child).experienceDescriptionPoint {
  padding-top: 8px;
}

#skills {
}

#skillGroup {
  display: flex;
  align-items: center;
}

#skillGroupHeader {
  display: flex;
  margin: auto;
  overflow: hidden;
  width: 240px;
  color: var(--primaryLabelColor);
}

#skillGroupEntry {
  display: flex;
}

#skill {
  display: flex;
  gap: 8px;
  width: 160px;
  align-items: center;
  color: var(--primaryLabelColor);
}

#skillNote {
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-left: 24px;
  border-left: 1px solid var(--borderColor);
  color: var(--secondaryLabelColor);
}

#skillSub {
  text-align: left;
  padding-left: 240px;
  color: var(--secondaryLabelColor);
}

#skillsMore {
  padding-top: 8px;
}

#skillsGroupSeparator:not(:last-child) {
  margin-bottom: 8px;
  margin-left: 240px;
  border-bottom: 1px solid var(--borderColor);
}

.languageCircleMajor {
  width: 24px;
  height: 24px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.languageCircleMinor {
  width: 16px;
  height: 16px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

#awards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 32px;
}

.awardEntry {
  padding-top: 16px;
  padding-bottom: 0px;
}

#footer {
  background-color: var(--systemGroupedBackgroundColor);
  padding-top: 2rem;
  padding-bottom: 16px;
  color: var(--secondaryLabelColor);
  text-align: center;
}