body{
  background-color: #0093E9;
  background-image: linear-gradient( 103.3deg,  rgba(252,225,208,1) 30%, rgba(255,173,214,1) 55.7%, rgba(162,186,245,1) 81.8% );
  font-family: "Zain", sans-serif;
  font-weight: 700;
  font-style: normal;
  animation: gradientAnimation 7s infinite;
  background-size: 600% 600%;
  overflow: hidden;
  position: fixed;
  height: 100vh;
  width: 100vw;
  padding: 0;
  margin: 0;
}

#fakeBody{
  overflow:hidden;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex: space-between;
  flex-direction: column;
  align-content: stretch;
}

@keyframes gradientAnimation {
0% {
    background-position: 0% 50%;
}
50% {
    background-position: 100% 50%;
}
100% {
    background-position: 0% 50%;
}
}

.project-titles{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-right: 30px;
    align-items: center;
}

#face{
  height: auto;
  width: 1000px;
  max-width: 95%;
  display: block;
  margin-left: auto;
  margin-right: auto;

}
#face:hover{
  transition: all .4s ease;
  -webkit-transition: all .4s ease;
  transform: scale(1.1);
  transform:translateY(1);
}

#fakePhone{
  background-color: rgb(207, 188, 188);
  box-shadow: 10px 8px 10px rgba(0, 0, 0, 0.4);
  height: 500px;
  width: 300px;
  margin-bottom: 200px;
  animation: phoneScroll linear both;
  animation-timeline: view();
  animation-range: 25vh 75vh;
  border-radius: 30px;
}

@keyframes phoneScroll {
  0%{
    transform: scale(1);
  }
  100%{
    transform: translateX(100px) rotateZ(.06turn);
  }
  
}


#cloud1{
  position: absolute;
  width: 200px;
  height: auto;
  animation: cloudAcrossScreen 10s ease-out infinite;
  left: -300px;
  top: -10px;
}

#cloud2{
  position: absolute;
  width: 600px;
  height: auto;
  animation: cloudAcrossScreen 7s ease-in-out infinite;
  left: -600px;
  animation-delay: 2s;
  top: 20%;
}


#cloud3{
  position: absolute;
  width: 200px;
  height:auto;
  animation: cloudAcrossScreen 15s ease-out infinite;
  animation-delay: 1s;
  left: -200px;
  top: 40%;
}

#cloud4{
  position: absolute;
  width: 200px;
  height:auto;
  animation: cloudAcrossScreen 15s ease-out infinite;
  animation-delay: 5s;
  left: -200px;
  top: 10%;
}

#cloud5{
  position: absolute;
  width: 200px;
  height:auto;
  animation: cloudAcrossScreen 15s ease-out infinite;
  animation-delay: 6s;
  left: -200px;
  top: 5%;
}

@keyframes cloudAcrossScreen {
  0%{
    transform: translateX(0px);
  }
  100%{
    transform: translateX(200vw);
  }
}


h1{
  font-size: 600%;
  padding: none;
  margin-block-start: 0px;
  line-height: 80%;
  margin-bottom: 20px;
}

h2{
  font-size: 500%;
  padding: none;
  margin-block-start: 0px;
  line-height: 80%;
  margin-bottom: 20px;
}

h3{
  font-size: 300%;
  margin: 0;
}

p{
  font-size: 200%;
  margin-left: 2vw;
  font-weight: 500;
  line-height: 80%;
}

hr{
    margin: 20px;
    margin-top: 60px;
}

.button {
  border: 1px solid black;
  color: black;
  padding: 12px 20px;
  text-decoration: none;
  font-size: 20px;
}

#linkCont{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding: 15px;
  padding-right: 30px;
  font-size: 2.5rem;
}
#filler{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding: 15px;
  padding-right: 30px;
  font-size: 2.5rem;
  visibility: hidden;
}


#linkCont a{
  color: black;
}

#mainSection{
  background-color: #ebe9e1f9;
  border-radius: 20px;
  flex: 1;
  inset: 0px;
  width: 75vw;
  height: 85dvh;
  max-width: 80vw;
  max-height: 90dvh;
  text-shadow: 2px 2px 4px white;
  margin: auto;
  box-shadow: 10 4px 8px 10 rgba(8, 8, 8, 0.3), 0 6px 20px 0 rgba(8, 8, 8, 0.3);
  z-index: 100;
}

#content{
  padding-left: 6vw;
  padding-right: 6vw;
  padding-top: 5%;
  align-self: center;
  overflow-y: scroll;
  height: 85%;

}

/* Hide scrollbar for Chrome, Safari and Opera */
#content::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
#content {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.tree {
  width: auto;
  height: 75%;
  position: absolute;
}
#tree1 {
  left: -5%;
  bottom: 2%;
  
}

#tree2{
  right: -5%;
  bottom: 2%;
  transform: scaleX(-1);
}

@media only screen and (max-width: 1026px) {
  #tree1 {
      display: none;
  }

  p{


  }

  #container {
    height: 85%;
    padding-left: 20px;
  }

  #mainSection {
    margin-left: 0px;
    border-top-left-radius: 0%;
    border-bottom-left-radius: 0%;
    
  }
  #tree2{
    right: -25%;
    transform: scaleX(1);
  }

  #cloud3{
    display: none;
  }
}

