html{
  scroll-behavior: smooth;
}

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

body {
  font-size: 26px;
  font-family: 'Ubuntu', sans-serif;
  background-color: black;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
.section {
  width: 100vw;
  height: 100vh;
}
.header {
    background-color: white;
}
.flex {
  display: flex;
  flex-direction: column;
}
.head{
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 7vh auto;
  width: 90vw;
}
.left{
  text-align: left;
}
.right{
  right: 27%;
  position: absolute;
  z-index: 1;
}
.logo {
  width: 12em;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  filter:grayscale() brightness(100);
  position: absolute;
  top: -5em;
  left: 0;
  margin: auto;
}
.blob {
  position: absolute;
  top: -12em;
  left: -5em;
  fill: #FF0000;
  width: 30vmax;
  z-index: -1;
  animation: move 10s ease-in-out infinite;
  transform-origin: 50% 50%;
}
@keyframes move {
  0%   { transform: scale(1); }
  38%  { transform: scale(0.8, 1) rotate(160deg); }
  40%  { transform: scale(0.8, 1) rotate(160deg); }
  78%  { transform: scale(1.1) rotate(-20deg); }
  80%  { transform: scale(1.1) rotate(-20deg); }
  100% { transform: scale(1); }
}
.comingsoon-blob {
  position: absolute;
  top: 0em;
  left: 0em;
  fill: #FF0000;
  width: 30vmax;
  z-index: -1;
  animation: move 10s ease-in-out infinite;
  transform-origin: 50% 50%;
}
.goback{
  position: absolute;
  top: 50px;
  left: 40px;
}
.goback::before{
  content:"< ";
  font-family: "Ubuntu", sans-serif;
}
@keyframes move {
  0%   { transform: scale(1); }
  38%  { transform: scale(0.8, 1) rotate(160deg); }
  40%  { transform: scale(0.8, 1) rotate(160deg); }
  78%  { transform: scale(1.1) rotate(-20deg); }
  80%  { transform: scale(1.1) rotate(-20deg); }
  100% { transform: scale(1); }
}
.textContainer{
  margin-bottom: 3em;
}
.titull {
  display: inline-block;
  position: relative;
  width: 100%;
  margin: 15% auto;
  text-align: left;
}
.welcome{
  display: inline-block;
  color: black; 
  font-size: 3em; 
  margin-right: 10px;
}
.dud{
  color: rgba(255, 0, 0, 0.5);
  font-weight: normal;
}
.text {
	position: relative;
	width: 100%;
	display: inline-block;
  font-family: "Ubuntu", sans-serif;
	font-size: 3em;
  font-weight: bold;
	text-align: left;
	user-select: none;
  color: red;
}
.motto {
  color: #777;
  font-size: 1em;
  margin-top: 0em;
  transition: all 0.3s ease 0s;
}
.margin-left{
  margin-left: 15%;
}
.custom-btn {
  color: #fff;
  border-radius: 50px;
  padding: 0.4em 1em;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
  display: inline-block;
  outline: none;
}
.button {
  background: red;
  border: none;
  z-index: 1;
  border: 2px solid red;
  text-decoration: none;
}
.button:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: white;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.button:hover {
  color: red;
  text-decoration: none;
  border: 2px solid red;
}
.button:hover:after {
  left: 0;
  width: 100%;
}
.button:active {
  top: 2px;
}
.waves {
  width: 100%;
  height:15vh;
  margin-bottom:-10px;
  min-height:100px;
  max-height:150px;
}
.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}
.about {
  width: 50%;
  color: white;
  padding: 2em auto 0 auto;
  margin-top: 5em;
  scroll-margin-top: 28vh;
}
.about-wrapper{
  width: 80vw;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.illustration{
position: relative;
}
.guy{
margin: 5em 7em;
width: 400px;
z-index: 10;
top: 0;
left: 0;
position: relative;
}
.white-blob{
  width: 27em;
  top: 4em;
  left: 3em;
  z-index: 0;
  position: absolute;
}
#technologies{
  margin: 7em 0;
  scroll-margin-top: 5em;
}
.heading{
  font-size: 2em;
  color: white;
  margin: 1em auto;
}

@media screen and (max-width: 1570){

}

/* Small screens */
@media screen and (max-width: 1300px) {
  .section{
    height: 100vh;
  }
  .head{
    width: 85vw;
    padding: 15vh 0;
    margin: 0 auto;
    display:flex;
    flex-direction: column-reverse;
    z-index: 10;
  }
  .left{
    text-align: left;
  }
  .right{
    display: none;
  }
  /* .logo{
    width: 7em;
    top: auto;
    left: 1em;
    position: relative;
  }
  .blob{
    top: -3em;
    left: -0.5em;
    width: 40vmax;
  } */
  .textContainer{
    margin: 0;
  }
  .welcome{
    font-size: 2em;
  }
  .text{
    font-size: 2em;
  }
  .motto{
    margin-top: 1em;
  }
  .margin-left{
    margin-left: 20vw;
    margin-top: 5em;
  }
  .about{
    width: 100%;
    scroll-margin-top: 10vh;
    top: 3em;
  }
  .about p{
    font-size: 0.8em;
  }
  .about-wrapper{
    flex-direction: column;
  }
  .guy{
    width: 200px;
    margin: 3em auto;
  }
  .white-blob{
    width: 13em;
    top: 2.5em;
    left: -2em;
  }
  .heading{
    font-size: 1.7em;
    color: white;
    text-align: center;
    margin-bottom: 0.5em;
  }
}

/* Tablets */
@media screen and (max-width: 768px) {
  
  .section{
    height: 100vh;
  }
  .head{
    width: 85vw;
    padding: 25vh 0;
    margin: 0 auto;
    display:flex;
    flex-direction: column-reverse;
    z-index: 10;
  }
  .left{
    text-align: left;
  }
  .right{
    display: none;
  }
  /* .logo{
    width: 7em;
    top: auto;
    left: 1em;
    position: relative;
  }
  .blob{
    top: -3em;
    left: -0.5em;
    width: 40vmax;
  } */
  .textContainer{
    margin: 0;
  }
  .welcome{
    font-size: 2em;
  }
  .text{
    font-size: 2em;
  }
  .motto{
    margin-top: 1em;
  }
  .margin-left{
    margin-left: 20vw;
    margin-top: 5em;
  }
  .about{
    width: 100%;
    scroll-margin-top: 10vh;
    top: 3em;
  }
  .about p{
    font-size: 0.8em;
  }
  .about-wrapper{
    flex-direction: column;
  }
  .guy{
    width: 200px;
    margin: 3em auto;
  }
  .white-blob{
    width: 13em;
    top: 2.5em;
    left: -2em;
  }
  .heading{
    font-size: 1.7em;
    color: white;
    text-align: center;
    margin-bottom: 0.5em;
  }

}
