/* 
 Written by Anthony G.
 2020/12/01
 Landing Style
*/
* {
  font-family: -apple-system, -apple-system, BlinkMacSystemFont, Inter,
    sans-serif;
  -webkit-tap-highlight-color: transparent !important;
  outline: 0;
}
body {
  /*     background:#f7f7f7; */
  background: white;
  position: relative;
  overflow-x: hidden;
  margin: 0;
}
.gradient-wrap {
  opacity: 0.2;
  transition: all 0.2s ease-in-out;
}
.background-gradient {
  border: 0;
  width: 100vw;
  height: 100vh;
  position: fixed;
  bottom: 0;
  left: 0;
  transition: filter 1s ease-in-out;
  opacity: 0.05;
}
img,
.title,
.heading {
  user-select: none !important;
  pointer-events: none !important;
  -webkit-user-select: none !important;
}
a {
  user-select: none;
  -webkit-user-select: none;
}
/* --------------------------------------------------------- */
/* LANDING - header */
/* --------------------------------------------------------- */
header {
  text-align: center;
  margin-bottom: 25px;
  padding-top: 25px;
  z-index: 9;
  background: linear-gradient(180deg, white, transparent);
}
.avatar {
  width: 100px;
  border-radius: 50%;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}
.heading {
  margin-bottom: 0px;
}
.subheading {
  color: #5f5f5f;
}
.subheading .js img,
.subheading .react img {
  width: 16px;
  border-radius: 3px;
  padding-right: 2px;
  padding-left: 5px;
  transform: translateY(3px);
}
.subheading .js {
  color: #212329;
}
.subheading .react {
  padding-left: 10px;
  color: #212329;
}
.employer:hover {
  text-decoration: underline;
}
.employer {
  text-decoration: none;
  color: #275693;
}
.employer img {
  width: 1em;
  padding-right: 3px;
  user-select: none;
  pointer-events: none;
  transform: translateY(2px);
}
.contact,
.contact:visited,
.contact:hover,
.contact:active {
  text-decoration: none;
  /* color:#5f5f5f; */
  color: #00acee;
  background: rgb(255 255 255 / 40%);
  padding: 5px;
  border-radius: 6px;
}
.donate,
.donate:visited,
.donate:hover,
.donate:active {
  text-transform: uppercase;
  text-decoration: none;
  color: rgb(218, 218, 19);
  font-weight: 300;
  background: rgba(255, 255, 49, 0.1);
  padding: 7px;
  border-radius: 6px;
  font-size: 0.8em;
  margin-top: 5px;
}
.contact:focus,
.donate:focus {
  box-shadow: 0px 10px 10px #7ad9ff48;
}
/* --------------------------------------------------------- */
/* LANDING - project showcase */
/* --------------------------------------------------------- */
.showcase {
  display: flex;
  flex-wrap: wrap;
}
.project {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background: rgb(255 255 255 / 50%);
  margin: 0 auto;
  margin-bottom: 20px;
  max-width: 729px !important;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: rgb(155 158 227 / 15%) 0px 7px 29px 0px;
  transform: scale(0.95);
  transition: all 400ms ease;
}
.project:hover .tagline {
  background: linear-gradient(
    to right,
    #000000 20%,
    #907e09 40%,
    #ffd500 60%,
    #000000 80%
  );
  background-size: 200% auto;
  color: #000;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.project:hover .icon {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px,
    rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px,
    rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
}
.project:hover {
  transform: scale(1);
  box-shadow: rgb(155 158 227 / 35%) 0px 7px 29px 0px;
}
/* --------------------------------------------------------- */
/* PROJECT - header */
/* --------------------------------------------------------- */
.app-header {
  padding: 50px;
  text-align: center;
  margin: 0 auto;
}
.icon {
  border-radius: 20px;
  width: 120px;
  transition: all 350ms ease-in-out;
}
.title {
  text-transform: uppercase;
  font-size: 0.9em;
}
.tagline {
  font-weight: bold;
  font-size: 1.2em;
  opacity: 1;
  /*     transition: all 350ms ease-in-out; */
  -webkit-animation: shine 1s linear infinite;
  animation: shine 1s linear infinite;
}
@-webkit-keyframes shine {
  to {
    background-position: 200% center;
  }
}
@keyframes shine {
  to {
    background-position: 200% center;
  }
}
.link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #06c;
}
.link a {
  text-decoration: none;
  color: inherit;
}
.link a:hover,
.link a:active,
.link a:focus {
  text-decoration: underline;
  color: inherit;
}
.link a:visited {
  color: inherit;
}
/* --------------------------------------------------------- */
/* PROJECT - render */
/* --------------------------------------------------------- */
.app-render {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover !important;
}
.splash {
  width: 500px;
  max-width: 100%;
}
.project-color-scheme-dark .link {
  color: gold;
}
.project-color-scheme-dark .title {
  color: #c8c8c8;
}
.project-color-scheme-dark {
  background: rgb(0 0 0 / 40%);
  color: white;
}
/* --------------------------------------------------------- */
/* LANDING - footer */
/* --------------------------------------------------------- */
footer {
  color: gray;
  text-align: center;
  font-weight: 100;
  padding-top: 50px;
  padding-bottom: 50px;
}
/* --------------------------------------------------------- */
/* GLOBAL - utility */
/* --------------------------------------------------------- */
.flex-column {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.flex-row {
  display: flex;
}
.flex-center {
  align-items: center;
  justify-content: center;
}
.flex-end {
  align-self: flex-end;
}
.hide {
  display: none;
  visibility: hidden;
}
/* --------------------------------------------------------- */
/* GLOBAL - mobile */
/* --------------------------------------------------------- */
@media (max-width: 1200px) {
  body {
    /*         margin: 7%; */
  }
  header {
    padding-top: 20px;
  }
  .showcase {
    flex-direction: column;
    margin: 4%;
  }
  .project {
    flex-direction: column;
    margin-bottom: 50px;
  }
  .app-render {
    width: auto;
  }
}
