*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Heebo';
  src: url('/static/fonts/Heebo-VariableFont_wght.ttf');
}

@keyframes wiggle {
    0% { transform: rotate(0deg); }
   94% { transform: rotate(0deg); }
   95% { transform: rotate(2.5deg); }
   97% { transform: rotate(-5deg); }
  100% { transform: rotate(0deg); }
}

@keyframes scrolldown
{
  0% { top: -150vh; }
  50% { top: -150vh; }
  95% { top: 11vh; }
  100% { top: 10vh; }
}

@keyframes fadein
{
  0% { opacity: 0; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeout
{
  0% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes blinker {
  50% {
    opacity: 0;
    transform: scale(0.9);
  }
}

html
{
  font-size: 100%;
  height: 100vh;
  width: 100vw;
}

body
{
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: auto 100%;
  z-index: -1;
  transition: 0.4s;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-family: 'Heebo';
}

header
{
  position: fixed;
  top : 6rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.pitchButton
{
  font-family: 'Heebo';
  font-variation-settings: 'wght' 500;
  background: rgba(9, 133, 227,0.3);
  border-width: 0.3rem;
  border-style: solid;
  border-color: rgba(9, 133, 227,0.3);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  text-transform: uppercase;
  padding: 1rem 2rem;
  font-size: 2rem;
  color: #0984e3;
  text-align: center;
  border-radius: 1rem;
  transition: 0.2s;
  cursor: pointer;
  outline:none;
}

.pitchButton:hover
{
  background: white;
}

.wiggleClass
{
  animation: wiggle 11s infinite;
}

.leftDoor
{
  display: block;
  position: fixed;
  width: 50vw;
  height: 100vh;
  left:-50vw;
  z-index: 4;
  transition: 2s;
  transition-timing-function:  ease-in-out;
  background: rgba(255,255,255,0.3);
  border-right: 0.1rem solid #f5f5f5;
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  filter: drop-shadow(0 0 0.3rem black);

}

.rightDoor
{
  display: block;
  position: fixed;
  width: 50vw;
  height: 100vh;
  right:-50vw;
  z-index: 4;
  transition: 2s;
  transition-timing-function:  ease-in-out;
  background: rgba(255,255,255,0.3);
  border-left: 0.1rem solid #f5f5f5;
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  filter: drop-shadow(0 0 0.3rem black);

}

.leftDoor.active
{
  left:0;
}

.rightDoor.active
{
  right:0;
}

.elevatorConversation
{
  z-index: 6;
  position: fixed;
  top: -200vh;
  display: flex row;
  align-items: center;
  justify-content: center;
  width: 70%;
  transition: 5s;
  border-width: 0.1rem;
  border-style: solid;
  border-color: #f5f5f5;
  background: rgba(9, 133, 227,0.3);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  filter: drop-shadow(0 0 1rem grey);
  font-variation-settings: 'wght' 300;
  border-radius: 2rem;
}

.elevatorConversation.active
{
  top:6rem;
}

.elevatorPitch
{
  margin: 2rem 3rem 0 3rem;
  display: flex;
  color: white;
  padding: 1.2rem 3rem 0 3rem;
  font-size: 3rem;
  font-variation-settings: 'wght' 900;
  z-index: 6;
}

.theAsk
{
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  font-variation-settings: 'wght' 900;
  font-size: 2rem;
}

.theAsk > a
{
  color: rgba(194, 54, 22,1.0);
}

.userEmail
{
  transition: 1s;
  display: flex;
  justify-content: center;
}

.userForm
{
  display: flex row;
  width: 80%;
}

.emailInput
{
  display: flex;
  font-size: 3.2rem;
  margin: 0 0 1rem 0;
  width: 100%;
  height: 4.5rem;
  border-radius: 1.5rem;
  font-family: 'Heebo';
  text-align: center;
  font-variation-settings: 'wght' 300;
  border: none;
}

.nameInput
{
  display: flex;
  font-size: 3.2rem;
  height: 4.5rem;
  border-radius: 1.5rem;
  margin: 1rem 0;
  width: 100%;
  text-align: center;
  font-family: 'Heebo';
  font-variation-settings: 'wght' 300;
  border: none;
}

.doneInput
{
  font-family: 'Heebo';
  font-variation-settings: 'wght' 500;
  display: flex;
  margin: 1rem auto;
  background: white;
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  border: none;
  padding: 0.5rem 2rem;
  font-size: 2.5rem;
  color: #0984e3;
  text-align: center;
  border-radius: 1rem;
  outline:none;
  transition: 0.2s;
  z-index: 6;
  cursor: pointer;
}

.doneInput:hover
{
  color: rgba(255,255,255,1);
  background: #009432;
}

.somethingsWrong
{
  font-family: 'Heebo';
  font-variation-settings: 'wght' 500;
  padding: 2rem 1rem 1rem 2rem;
  font-size: 2rem;
  text-align: center;
  position: fixed;
  color: rgba(194, 54, 22,1.0);
  background: #fab1a0;
  border-color: #c3e6cb;
  border-radius: 1.5rem;
  top:20rem;
  z-index: 4;
}

.retryButton
{
  float:right;
  display:inline-block;
  padding:0.5rem 1rem;
  border-radius: 1.5rem;
  margin: 0 1rem;
  margin-top: -0.5rem;
  transition: 0.2s;
  background: rgba(194, 54, 22,1.0);
  color: white;
  cursor: pointer;
}

.retry
{
  font-family: 'Heebo';
  font-variation-settings: 'wght' 500;
  padding: 1.2rem 1rem 1rem 2rem;
  font-size: 2rem;
  text-align: center;
  position: sticky;
  color: rgba(194, 54, 22,1.0);
  background: #fab1a0;
  border-color: #c3e6cb;
  border-radius: 1.5rem;
  z-index: 8;
}

.success
{
  font-family: 'Heebo';
  font-variation-settings: 'wght' 500;
  padding: 1.2rem 1rem 1rem 2rem;
  font-size: 2rem;
  text-align: center;
  position: fixed;
  color: #155724;
  background: #d4edda;
  border-color: #c3e6cb;
  border-radius: 1.5rem;
  top:20rem;
  z-index: 4;
  animation: fadeout 11s forwards;
}

.close
{
  float:right;
  display:inline-block;
  margin: 0.5rem 1rem 0 2rem;
  fill:#155724;
  z-index: 4;
  transition: 0.2s;
}

.close:hover
{
  fill:rgba(194, 54, 22,1.0);
}

.exitButton
{
  font-family: 'Heebo';
  font-variation-settings: 'wght' 500;
  background: rgba(194, 54, 22,1.0);
  border-width: 0.3rem;
  border-style: solid;
  border-color: rgba(194, 54, 22,1.0);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  text-transform: uppercase;
  padding: 1rem 2rem;
  font-size: 2rem;
  color: #fab1a0;
  text-align: center;
  border-radius: 1rem;
  margin: 2rem auto;
  position: fixed;
  display: none;
  z-index: 6;
  animation: fadein 6s;
  cursor: pointer;
}

.exitButton:hover
{
  transition: 0.2s;
  background: #fab1a0;
  color: rgba(194, 54, 22,1.0);
}

.exitButton.active
{
  display: block;
  bottom: 3rem;
}

.main
{
  height:100vh;
  padding-top: 18rem;
  display: flex;
  flex-flow: column;
  align-items: center;
}

.main > * + * 
{
  margin-top:2rem;
}

.dashboard
{
  border-radius: 1.5rem;
  z-index: 1;
  width: 97%;
  border-width: 0.1rem;
  border-style: solid;
  border-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  filter: drop-shadow(0 0 0.1rem grey);
}

.dashboardButton
{
  font-size: 2rem;
  font-variation-settings: 'wght' 300;
  text-transform: uppercase;
  color: #3d3d3d;
  text-decoration: none;
  text-align: center;
  z-index: 2;
  padding: 0.5ch 0.5ch 0.5ch 0.5ch;
  border-radius: 1.2rem;
  transition: 0.2s;
  margin: 0.5vh;
}

.dashboardButton:hover
{
  font-variation-settings: 'wght' 900;
  letter-spacing: -0.01rem;
  background: rgba(255,255,255);
}

.ux
{
  text-align: left;
  flex: 1 1 20%;
}

.engineering
{
  text-align: left;
  flex: 1 1 20%;
}

.skills
{
  flex: 1 1 20%;
  padding: 2rem 0.5ch;
}

.roles
{
  flex: 1 1 20%;
  padding: 2rem 0.5ch;
}

.me
{
  font-variation-settings: 'wght' 300;
  flex: 1 1 20%;
  color:#0984e3;
  text-transform: capitalize;
  padding: 2rem 0.5ch;
}

.selected.me
{
  background: white;
  color:#0984e3;
  letter-spacing: -0.01rem;
}

.selected.me:hover
{
  background: white;
  color:#0984e3;
  letter-spacing: -0.01rem;
}

.selected
{
  color: #3d3d3d;
  background: white;
  font-variation-settings: 'wght' 900;
}

.selected:hover
{
  color: #3d3d3d;
  background: white;
  font-variation-settings: 'wght' 900;
}

.projectCard
{
  margin: auto;
  background: rgba(255,255,255,0.3);
  border-radius: 1.5rem;
  z-index: 1;
  width: 97%;
  border-width: 0.1rem;
  border-style: solid;
  border-color: #f5f5f5;
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  padding: 1rem;
  display: flex row;
  align-items: center;
  justify-content: space-around;
  transition: 0.2s;
  filter: drop-shadow(0 0 0.1rem grey);
  cursor: pointer;
}

.projectCard > a
{
  text-decoration: none;
}

.project:hover
{
  background: rgba(255,255,255);
  filter: drop-shadow(0 0 0.1rem grey);
}

.theWhy
{
  height: 14rem;
  font-size: 7rem;
  font-variation-settings: 'wght' 900;
  line-height: 7rem;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.theWhat
{
  height: 9rem;
  font-size: 3rem;
  font-variation-settings: 'wght' 300;
  color: black;
}

.tags
{
  display: flex;
  justify-content: center;
  margin-top: 4rem;
  font-size: 2.2rem;
  font-variation-settings: 'wght' 300;
}

li.tag
{
  color: #f9f9f9;
  display:inline-block;
  width: inherit;
  font-variation-settings: 'wght' 500;
  padding: 0.5ch 1ch 0.5ch 1ch;
  margin-right: 0.5ch;
  border-radius: 1vh;
}

.projectNav
{
  display: flex;
  justify-content: center;
  align-items: center;
  /*gap: 2rem;*/
}

.projectNav > * + *
{
  margin-left:2rem;
}

.navbutton
{
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  height: 10rem;
  width: 10rem;
  border-width: 0.1rem;
  border-style: solid;
  border-color: #f5f5f5;
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  filter: drop-shadow(0 0 0.1rem grey);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  font-size: 4rem;
  font-variation-settings: 'wght' 300;
  cursor: pointer;
}

.navbutton:hover
{
  font-variation-settings: 'wght' 900!important;
  background: rgba(255,255,255)!important;
}

.navSelected
{
  font-variation-settings: 'wght' 900;
  border-width: 0.1rem;
  border-style: solid;
  border-color: #f5f5f5;
  filter: drop-shadow(0 0 0.1rem grey);
}

footer
{
  display: flex;
  justify-content: center;
  align-items: center;
}

p.rotatePrompt
{
  display: none;
  position: absolute;
  width: 100%;
  font-variation-settings: 'wght' 400;
  font-size: 2rem;
  text-align: center;
  color: white;
  bottom:4rem;
}

p.authorCard
{
  position: absolute;
  width: 100%;
  font-variation-settings: 'wght' 400;
  font-size: 2rem;
  text-align: center;
  color: rgba(9, 133, 227,1);
  bottom:3rem;
}

.blinkerClass
{
  animation: blinker 4s infinite;
}

.authorCard > a
{
  color: inherit;
  text-decoration: none;
}

p.authorCard:hover
{
  color: black;
  transition: 0.2s;
  font-variation-settings: 'wght' 900;
  animation: none;
}


@media
only screen and (orientation:landscape) and (max-device-height:500px)
{
  header, .leftDoor, .rightDoor, .exitButton.active, .elevatorConversation, .main, .authorCard
  {
    display: none;
  }
  body
  {
    background-color: rgba(0,0,0,1)!important;
    background-image: url('/static/rotatedevice/rotate.gif')!important;
    background-position: center!important;
    background-size: 25%!important;
  }
  p.rotatePrompt
  {
    display: block;
  }
}


@media screen and (min-device-width:600px)
{
  html
  {
    font-size: 50%;
  }
  body
  {
    background-size: 100%;
  }
  header
  {
      top:4rem;
  }
  .elevatorConversation
  {
      max-width:400px;
  }
  .elevatorPitch
  {
    /*padding: 1.2rem 12rem 0 12rem;*/
  }
  .success
  {
    position:fixed;
    top:10rem;
  }
  .somethingsWrong
  {
    position:fixed;
    top:10rem;
  }
  .main
  {
    height: 100vh;
    padding-top: 15rem;
  }
  .dashboard
  {
    max-width: 500px;
  }
  .projectCard
  {
    max-width: 600px;
  }
}
