@import url("https://fonts.googleapis.com/css2?family=Caveat&family=Homemade+Apple&family=Licorice&family=Poppins&display=swap");
* {
  box-sizing: border-box;
  letter-spacing: 1.2px;
}

html {
  scroll-behavior: smooth;
  --scrollbarBG: #e2e2e2;
  --thumbBG: #fff;
}

body::-webkit-scrollbar {
  width: 18px;
}

body {
  scrollbar-width: thin;
  scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}

body::-webkit-scrollbar-track {
  background: var(--scrollbarBG);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--thumbBG);
  border-radius: 6px;
  border: 3px solid var(--scrollbarBG);
}

body {
  display: flex;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

.navbar {
  display: flex;
  width: 90%;
  height: 120px;
  border: 4px solid #212529;
  border-radius: 16px;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  margin-top: 50px;
  margin-left: 5%;
}

.navbar:hover {
  border: 4px dashed #212529;
}

.menu_icon {
  display: block;
  display: none;
  position: relative;
  width: 50px;
  height: 50px;
  z-index: 1;
  top: 11%;
}

.menu {
  display: flex;
  visibility: hidden;
  opacity: 0;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 1%;
  left: 40%;
  margin: auto;
  width: 25%;
  height: 200px;
  border-radius: 50%;
  background-color: #212529;
  transition: ease 0.5s;
  box-shadow: inset 4px 4px 12px 4px black, inset 4px 4px 12px 4px black;
}

.menu.active {
  display: flex;
  visibility: visible;
  opacity: 1;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 14px;
  left: 5%;
  margin: auto;
  width: 90%;
  height: 500px;
  border-radius: 16px;
  background-color: #212529;
  transition: ease 0.5s;
  box-shadow: inset 4px 4px 12px 4px black, inset 4px 4px 12px 4px black;
}

.new_menu {
  display: flex;
  visibility: hidden;
  opacity: 0;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 175px;
  left: 40%;
  margin: auto;
  width: 25%;
  height: 200px;
  border-radius: 50%;
  background-color: #212529;
  transition: ease 0.5s;
  box-shadow: inset 4px 4px 12px 4px black, inset 4px 4px 12px 4px black;
}

.new_menu.active {
  display: flex;
  visibility: visible;
  opacity: 1;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 175px;
  left: 5%;
  margin: auto;
  width: 90%;
  height: 1550px;
  border-radius: 16px;
  background-color: #212529;
  transition: ease 0.5s;
  box-shadow: inset 4px 4px 12px 4px black, inset 4px 4px 12px 4px black;
  z-index: 2;
}

.new_menu ul {
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 300px;
  align-items: center;
  justify-content: center;
  transform: translateY(-300px);
  padding: 0;
}

.menu ul {
  display: flex;
  width: 300px;
  height: 300px;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.new_menu .menu_text {
  text-decoration: none;
  color: #fff;
  font-size: 32px;
}

.menu_text {
  text-decoration: none;
  color: #fff;
  font-size: 28px;
}

.menu_text:hover {
  color: #219ebc;
  transition: ease-in 0.2s;
}

.nav_btn {
  color: #212529;
  font-weight: bold;
  text-decoration: none;
}

.nav_btn:hover {
  color: #219ebc;
  transition: ease-in 0.2s;
}

ul,
li {
  display: inline;
  margin: 25px;
}

.container {
  display: flex;
  flex-direction: column;
  height: 1350px;
  width: 100%;
  position: relative;
  top: 175px;
}

.name {
  height: 200px;
  width: 100%;
  text-align: center;
  margin: 50px auto;
  line-height: 25px;
  margin-top: 80px;
}

.name_mobile {
  display: none;
  height: 200px;
  width: 100%;
  text-align: center;
  margin: 50px auto;
  line-height: 25px;
  margin-top: 80px;
}

h1 {
  color: #212529;
}

h2 {
  font-weight: 400;
  color: #adb5bd;
}

.readbtn {
  text-decoration: none;
  border: 2px solid #219ebc;
  border-radius: 4px;
  padding: 12px 32px;
  line-height: 50px;
  color: #219ebc;
  font-size: 14px;
}

.readbtn:hover {
  border: 2px solid #212529;
  background-color: #219ebc;
  color: white;
  transition: ease-in 0.21s;
}

.web {
  color: #219ebc;
}

#logo {
  width: 65px;
  height: 60px;
  margin-left: 50px;
  margin-top: -5px;
  cursor: pointer;
}

#logo:active {
  transform: scale(0.98);
}

.first::before {
  content: "Creative";
  animation: anim infinite 8s linear;
  color: #219ebc;
}

@keyframes anim {
  0% {
    content: "C";
  }
  3% {
    content: "Cr";
  }
  6% {
    content: "Cre";
  }
  9% {
    content: "Crea";
  }
  12% {
    content: "Creat";
  }
  15% {
    content: "Creati";
  }
  18% {
    content: "Creativ";
  }
  21% {
    content: "Creative";
  }
  24% {
    content: "Creative.";
  }
  27% {
    content: "Creative.";
  }
  30% {
    content: "Creative.";
  }
  31% {
    content: "Creative";
  }
  32% {
    content: "Creativ";
  }
  33% {
    content: "Creati";
  }
  34% {
    content: "Creat";
  }
  35% {
    content: "Crea";
  }
  36% {
    content: "Cre";
  }
  37% {
    content: "Cr";
  }
  38% {
    content: "C";
  }
  39% {
    content: "C";
  }
  40% {
    content: "C";
  }
  41% {
    content: "Cl";
  }
  44% {
    content: "Cla";
  }
  47% {
    content: "Clas";
  }
  50% {
    content: "Class";
  }
  53% {
    content: "Classy";
  }
  56% {
    content: "Classy.";
  }
  59% {
    content: "Classy.";
  }
  62% {
    content: "Classy.";
  }
  63% {
    content: "Classy";
  }
  64% {
    content: "Class";
  }
  65% {
    content: "Clas";
  }
  66% {
    content: "Cla";
  }
  67% {
    content: "Cl";
  }
  70% {
    content: "C";
  }
  73% {
    content: "Cl";
  }
  74% {
    content: "Cle";
  }
  77% {
    content: "Clev";
  }
  80% {
    content: "Cleve";
  }
  83% {
    content: "Clever";
  }
  86% {
    content: "Clever.";
  }
  89% {
    content: "Clever.";
  }
  92% {
    content: "Clever.";
  }
  93% {
    content: "Clever";
  }
  94% {
    content: "Cleve";
  }
  95% {
    content: "Clev";
  }
  96% {
    content: "Cle";
  }
  97% {
    content: "Cl";
  }
  98% {
    content: "C";
  }
  99% {
    content: "C";
  }
  100% {
    content: "C";
  }
}
.type {
  color: #398497;
  animation: blinker 2.5s linear infinite;
}

@keyframes blinker {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  45% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  85% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#work {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  height: 1800px;
  margin: auto;
  border-radius: 16px;
  margin-top: 50px;
  position: relative;
  border: 4px solid #212529;
}

#work:hover {
  border: 4px dashed #212529;
}

.shape {
  width: 100px;
  height: 100px;
  position: relative;
}

.work_one {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: 300px;
  margin: auto;
  margin-top: 70px;
  margin-bottom: 70px;
  border-radius: 16px;
  background-color: #e63946;
  cursor: pointer;
}

.work_one:hover {
  border: 4px solid #212529;
}
.work_one:hover .shape {
  opacity: 0.1;
  transition: ease-out 0.2s;
}

.work_two {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: 300px;
  margin: auto;
  margin-top: 70px;
  margin-bottom: 70px;
  border-radius: 16px;
  background-color: #a8dadc;
  cursor: pointer;
}

.work_two:hover {
  border: 4px solid #212529;
}
.work_two:hover .shape {
  opacity: 0.1;
  transition: ease-out 0.2s;
}

.work_three {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: 300px;
  margin: auto;
  margin-bottom: 70px;
  border-radius: 16px;
  background-color: #f5cb5c;
  cursor: pointer;
}

.work_three:hover {
  border: 4px solid #212529;
}
.work_three:hover .shape {
  opacity: 0.1;
  transition: ease-out 0.2s;
}

.work_four {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: 300px;
  margin: auto;
  margin-bottom: 70px;
  border-radius: 16px;
  background-color: #7bf1a8;
  cursor: pointer;
}

.work_four:hover {
  border: 4px solid #212529;
}
.work_four:hover .shape {
  opacity: 0.1;
  transition: ease-out 0.2s;
}

.work_five {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: 300px;
  margin: auto;
  margin-bottom: 70px;
  border-radius: 16px;
  background-color: #ee8959;
  cursor: pointer;
}

.work_five:hover {
  border: 4px solid #212529;
}
.work_five:hover .shape {
  opacity: 0.1;
  transition: ease-out 0.2s;
}

.work_six {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: 300px;
  margin: auto;
  margin-bottom: 70px;
  border-radius: 16px;
  background-color: #edafb8;
  cursor: pointer;
}

.work_six:hover {
  border: 4px solid #212529;
}
.work_six:hover .shape {
  opacity: 0.1;
  transition: ease-out 0.2s;
}

.work_seven {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: 300px;
  margin: auto;
  margin-bottom: 70px;
  border-radius: 16px;
  background-color: #cdb4db;
  cursor: pointer;
}

.work_seven:hover {
  border: 4px solid #212529;
}
.work_seven:hover .shape {
  opacity: 0.1;
  transition: ease-out 0.2s;
}

.work_eight {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: 300px;
  margin: auto;
  margin-bottom: 70px;
  border-radius: 16px;
  background-color: #eae2b7;
  cursor: pointer;
}

.work_eight:hover {
  border: 4px solid #212529;
}
.work_eight:hover .shape {
  opacity: 0.1;
  transition: ease-out 0.2s;
}

.thumb_one,
.thumb_two,
.thumb_three,
.thumb_four,
.thumb_five,
.thumb_six,
.thumb_seven,
.thumb_eight {
  display: flex;
  display: none;
  position: absolute;
  transition: ease-in 0.45s;
}

.thumb_one.show,
.thumb_two.show,
.thumb_three.show,
.thumb_four.show,
.thumb_five.show,
.thumb_six.show,
.thumb_seven.show,
.thumb_eight.show {
  display: flex;
  position: absolute;
  transition: ease-in 0.45s;
}

.thumb_one h1,
.thumb_two h1,
.thumb_three h1,
.thumb_four h1,
.thumb_five h1,
.thumb_six h1,
.thumb_seven h1,
.thumb_eight h1 {
  color: #fff;
  text-shadow: 4px 4px 8px #000000;
  transition: ease-in 0.45s;
  text-align: center;
}

.sub_text {
  position: absolute;
  margin-top: 70px;
  color: #212529;
  font-weight: bold;
  text-align: center;
  border: 1px solid black;
}

.heading {
  height: 50px;
  width: 100px;
  margin: auto;
  text-align: center;
  margin-bottom: -52px;
  margin-top: -200px;
  text-transform: uppercase;
}

.heading h2 {
  font-weight: bold;
  letter-spacing: 2px;
}

.quote {
  width: 90%;
  height: 180px;
  margin: auto;
  text-align: center;
  margin-top: 10px;
}

.quote1 {
  width: 50px;
  height: 30px;
}

.quote h2::before {
  content: "Design is intelligence made visible.";
  animation: slider 18s infinite;
  transition: ease-in 0.5s;
}

.quote h3::before {
  content: "Alina Wheeler";
  animation: slide 18s infinite;
  transition: ease-in 0.5s;
  font-weight: bold;
  color: #adb5bd;
}

@keyframes slider {
  0% {
    content: "Design is intelligence made visible.";
  }
  20% {
    content: "Make it simple, but significant.";
  }
  40% {
    content: "Design adds value faster than it adds costs.";
  }
  60% {
    content: "Every great design begins with an even better story.";
  }
  80% {
    content: "Good design is good business.";
  }
}
@keyframes slide {
  0% {
    content: "Alina Wheeler";
  }
  20% {
    content: "Don Draper";
  }
  40% {
    content: "Joel Spolsky";
  }
  60% {
    content: "Lorinda Mamo";
  }
  80% {
    content: "Thomas Watson Jr.";
  }
}
.about {
  display: flex;
  width: 90%;
  height: 700px;
  margin: auto;
  border-radius: 16px;
  position: relative;
  top: 175px;
  justify-content: space-evenly;
  flex-direction: row;
  align-items: center;
}

.mypic {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 520px;
  border-radius: 16px;
  background-image: url(/images/mypic.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.me {
  display: flex;
  width: 400px;
  height: 520px;
  flex-direction: column;
  text-align: center;
  background-color: #212529;
  border-radius: 16px;
}

.about_text {
  text-align: left;
  margin-top: -20px;
  color: white;
  font-weight: 400;
  padding: 20px 30px;
  font-size: 16px;
}

.mail {
  color: #212529;
  font-weight: bold;
}

.email {
  color: #219ebc;
  text-decoration: none;
  font-weight: bold;
}

.text {
  display: flex;
  height: 200px;
  width: 130px;
  justify-content: center;
  align-items: center;
  background-color: rgb(255, 202, 193);
  border-radius: 30px;
}

.h2 {
  position: absolute;
  margin-bottom: 140px;
  color: rgb(145, 144, 139);
  transition: 0.4s;
}

.h2.active {
  position: absolute;
  margin-bottom: 140px;
  color: green;
  transition: 0.4s;
}

.h3 {
  position: absolute;
  margin-top: 140px;
  color: red;
  transition: 0.4s;
}

.h3.active {
  position: absolute;
  margin-top: 140px;
  color: rgb(145, 144, 139);
  transition: 0.4s;
}

.play {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 450px;
  width: 90%;
  background-color: rgb(0, 0, 0);
  transition: 0.4s;
  margin: 175px auto;
  margin-bottom: 0;
  border-radius: 16px;
  border: 4px solid #212529;
}

.play.active {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 450px;
  width: 90%;
  background-color: #64cadf;
  transition: 0.4s;
  margin: 175px auto;
  margin-bottom: 0;
  border-radius: 16px;
  border: 4px solid #212529;
}

.slider {
  display: flex;
  height: 62px;
  width: 120px;
  background-color: rgba(35, 35, 35, 0.25);
  border-radius: 30px;
  border: 3px solid white;
  align-items: center;
  position: relative;
  transition: 0.4s;
}

.slider.active {
  display: flex;
  height: 62px;
  width: 120px;
  background-color: rgba(72, 197, 228, 0.25);
  border-radius: 30px;
  border: 3px solid black;
  align-items: center;
  position: relative;
  transition: 0.4s;
}

.circle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: black;
  position: absolute;
  transition: 0.2s ease;
  cursor: pointer;
  border: 4px solid white;
  transform: translateX(8%);
}

.circle.active {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: white;
  position: absolute;
  transform: translateX(122%);
  transition: 0.2s ease;
  border: 4px solid black;
  cursor: pointer;
}

.moon {
  display: flex;
  position: absolute;
  width: 35px;
  height: 35px;
  transition: ease-out 0.4s;
}

.moon.active {
  display: none;
  position: absolute;
  width: 40px;
  height: 40px;
  transition: ease-out 0.4s;
}

.star {
  display: flex;
  position: relative;
  width: 40px;
  height: 40px;
  transform: rotate(120deg);
  z-index: -2;
  margin-top: 5px;
  margin-right: 5px;
  transition: ease-out 0.4s;
}

.star.active {
  display: none;
  position: relative;
  width: 45px;
  height: 45px;
  transform: rotate(120deg);
  z-index: -2;
  transition: ease-out 0.4s;
}

.sun {
  display: none;
  position: relative;
  width: 65px;
  height: 65px;
  transition: ease-out 0.4s;
}

.sun.active {
  display: flex;
  position: relative;
  width: 60px;
  height: 60px;
  transition: ease-out 0.4s;
}

.clouds {
  display: none;
  position: absolute;
  width: 35px;
  height: 15px;
  margin-top: 22px;
  margin-left: 14px;
  transition: ease-out 0.4s;
}

.clouds.active {
  display: flex;
  position: absolute;
  width: 30px;
  height: 10px;
  margin-top: 22px;
  margin-left: 14px;
  transition: ease-out 0.4s;
}

.chand {
  display: flex;
  width: 160px;
  height: 160px;
  position: absolute;
  left: 190px;
  transition: ease-in;
}

.chand.active {
  display: flex;
  display: none;
  width: 160px;
  height: 160px;
  position: absolute;
  left: 190px;
}

.suraj {
  display: flex;
  display: none;
  width: 250px;
  height: 250px;
  position: absolute;
  right: 170px;
  align-items: center;
  justify-content: center;
}

.suraj.active {
  display: flex;
  width: 250px;
  height: 250px;
  position: absolute;
  right: 170px;
  align-items: center;
  justify-content: center;
}

.gola {
  width: 150px;
  height: 150px;
  border: 5px solid rgb(255, 218, 53);
  border-radius: 50%;
  position: relative;
  margin: auto;
  background-color: rgb(255, 225, 92);
}

.gola2 {
  width: 152px;
  height: 152px;
  border: 10px solid #64cadf;
  border-radius: 50%;
  position: absolute;
  margin: auto;
  background-color: rgb(255, 225, 92);
}

.line1 {
  position: absolute;
  width: 220px;
  height: 8px;
  background-color: rgb(255, 218, 53);
  animation: glow infinite 3s linear;
}

.line2 {
  position: absolute;
  width: 220px;
  height: 8px;
  background-color: rgb(255, 218, 53);
  transform: rotate(90deg);
  animation: glow infinite 3s linear;
}

.line3 {
  position: absolute;
  width: 220px;
  height: 8px;
  background-color: rgb(255, 218, 53);
  transform: rotate(135deg);
  animation: glow infinite 3s linear;
}

.line4 {
  position: absolute;
  width: 220px;
  height: 8px;
  background-color: rgb(255, 218, 53);
  transform: rotate(45deg);
  animation: glow infinite 3s linear;
}

@keyframes glow {
  50% {
    width: 280px;
    background-color: rgb(218, 188, 144);
  }
}
.galaxy {
  display: flex;
  width: 89%;
  height: 440px;
  position: absolute;
}

.star_gallery {
  display: flex;
  width: 89%;
  height: 440px;
  position: absolute;
}

.star_gallery.active {
  display: flex;
  display: none;
  width: 89%;
  height: 440px;
  position: absolute;
}

.stary1 {
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  margin-left: 100px;
  margin-top: 100px;
  animation: tim infinite linear 3s;
}

.stary2 {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  margin-left: 70px;
  margin-top: 30px;
  animation: tim infinite linear 2.1s;
}

.stary3 {
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  right: 80px;
  margin-top: 40px;
  animation: tim infinite linear 2.8s;
}

.stary4 {
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  right: 300px;
  margin-top: 200px;
  animation: tim infinite linear 1.2s;
}

.stary5 {
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  margin-left: 350px;
  margin-top: 150px;
  animation: tim infinite linear 2.3s;
}

.stary6 {
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  margin-left: 300px;
  margin-top: 400px;
  animation: tim infinite linear 0.9s;
}

.stary7 {
  width: 7px;
  height: 7px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  margin-left: 70px;
  margin-top: 280px;
  animation: tim infinite linear 1.4s;
}

.stary8 {
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  margin-left: 145px;
  margin-top: 350px;
  animation: tim infinite linear 1.7s;
}

.stary9 {
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  margin-left: 210px;
  margin-top: 10px;
  animation: tim infinite linear 0.8s;
}

.stary10 {
  width: 4px;
  height: 4px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  margin-left: 500px;
  margin-top: 40px;
  animation: tim infinite linear 2.45s;
}

.stary11 {
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  margin-left: 650px;
  margin-top: 380px;
  animation: tim infinite linear 1s;
}

.stary12 {
  width: 7px;
  height: 7px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  margin-left: 460px;
  margin-top: 285px;
  animation: tim infinite linear 1.9s;
}

.stary13 {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  right: 400px;
  margin-top: 320px;
  animation: tim infinite linear 2s;
}

.stary14 {
  width: 4px;
  height: 4px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  right: 420px;
  margin-top: 156px;
  animation: tim infinite linear 1.1s;
}

.stary15 {
  width: 7px;
  height: 7px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  right: 30px;
  margin-top: 300px;
  animation: tim infinite linear 2.9s;
}

.stary16 {
  width: 4px;
  height: 4px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  right: 230px;
  margin-top: 360px;
  animation: tim infinite linear 1.5s;
}

.stary17 {
  width: 4px;
  height: 4px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  right: 480px;
  margin-top: 65px;
  animation: tim infinite linear 2.5s;
}

.stary18 {
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  right: 280px;
  margin-top: 120px;
  animation: tim infinite linear 1.4s;
}

.stary19 {
  width: 3px;
  height: 3px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  right: 130px;
  margin-top: 260px;
  animation: tim infinite linear 0.5s;
}

.stary20 {
  width: 3px;
  height: 3px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  margin-left: 320px;
  margin-top: 65px;
  animation: tim infinite linear 0.6s;
}

@keyframes tim {
  50% {
    opacity: 0;
  }
}
.stary21 {
  width: 5px;
  height: 5px;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  position: absolute;
  margin-left: 750px;
  margin-top: 30px;
  animation: fall linear infinite 5s;
}

@keyframes fall {
  0% {
    opacity: 1;
    margin-left: 750px;
    margin-top: 30px;
  }
  10% {
    opacity: 1;
    margin-left: 750px;
    margin-top: 30px;
  }
  20% {
    opacity: 1;
    margin-left: 750px;
    margin-top: 30px;
  }
  30% {
    opacity: 0;
    margin-left: 750px;
    margin-top: 30px;
  }
  40% {
    opacity: 1;
    margin-left: 750px;
    margin-top: 30px;
  }
  50% {
    opacity: 0;
    margin-left: 750px;
    margin-top: 30px;
  }
  60% {
    opacity: 1;
    margin-left: 750px;
    margin-top: 30px;
  }
  70% {
    opacity: 0;
    margin-left: 750px;
    margin-top: 30px;
  }
  80% {
    opacity: 0;
    margin-left: 750px;
    margin-top: 30px;
  }
  90% {
    opacity: 1;
    margin-left: 750px;
    margin-top: 30px;
  }
  100% {
    opacity: 1;
    margin-left: 500px;
    margin-top: 420px;
  }
}
.stary22 {
  width: 3px;
  height: 3px;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  position: absolute;
  right: 0px;
  top: 180px;
  animation: fall2 linear infinite 3s;
}

@keyframes fall2 {
  0% {
    opacity: 1;
    right: 0px;
    top: 180px;
  }
  10% {
    opacity: 1;
    right: 0px;
    top: 180px;
  }
  20% {
    opacity: 1;
    right: 0px;
    top: 180px;
  }
  30% {
    opacity: 0;
    right: 0px;
    top: 180px;
  }
  40% {
    opacity: 1;
    right: 0px;
    top: 180px;
  }
  50% {
    opacity: 0;
    right: 0px;
    top: 180px;
  }
  60% {
    opacity: 1;
    right: 0px;
    top: 180px;
  }
  70% {
    opacity: 0;
    right: 0px;
    top: 180px;
  }
  80% {
    opacity: 0;
    right: 0px;
    top: 180px;
  }
  90% {
    opacity: 1;
    right: 0px;
    top: 180px;
  }
  100% {
    opacity: 1;
    right: 680px;
    top: 380px;
  }
}
#cloud1 {
  display: flex;
  display: none;
  width: 150px;
  height: 100px;
  top: 40%;
  right: 30%;
  position: absolute;
  animation: slid 6s forwards infinite;
}

#cloud1.active {
  display: flex;
  width: 150px;
  height: 100px;
  top: 40%;
  right: 30%;
  position: absolute;
  animation: slid 6s forwards infinite;
}

@keyframes slid {
  50% {
    right: 800px;
  }
  100% {
    right: 30%;
  }
}
#cloud2 {
  display: flex;
  display: none;
  width: 150px;
  height: 100px;
  top: 40%;
  left: 10%;
  position: absolute;
  animation: sli 6s forwards infinite;
}

#cloud2.active {
  display: flex;
  width: 150px;
  height: 100px;
  top: 40%;
  left: 10%;
  position: absolute;
  animation: sli 6s forwards infinite;
}

@keyframes sli {
  50% {
    left: 0;
  }
  100% {
    left: 10%;
  }
}
#cloud3 {
  display: flex;
  display: none;
  width: 150px;
  height: 100px;
  top: 40%;
  right: 5%;
  position: absolute;
  animation: sli 6s forwards infinite;
}

#cloud3.active {
  display: flex;
  width: 150px;
  height: 100px;
  top: 40%;
  right: 5%;
  position: absolute;
  animation: sli3 6s forwards infinite;
  z-index: 1;
}

@keyframes sli3 {
  50% {
    right: 220px;
  }
  100% {
    right: 5%;
  }
}
.bush1 {
  position: absolute;
  width: 50px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  margin-left: 28px;
  margin-top: 30px;
}

.bush2 {
  position: absolute;
  width: 50px;
  height: 40px;
  background-color: #fff;
  margin-left: 50px;
  margin-top: 30px;
}

.bush3 {
  position: absolute;
  width: 50px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  margin-left: 74px;
  margin-top: 30px;
}

.bush4 {
  position: absolute;
  width: 50px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  margin-left: 50px;
  margin-top: 12px;
}

.container_two {
  display: flex;
  align-items: center;
  text-align: center;
  border: 4px solid black;
  border-radius: 16px;
  width: 90%;
  height: 450px;
  justify-content: space-evenly;
  margin-top: 175px !important;
  margin: auto;
  perspective: 1000px;
}

.container_two:hover {
  border: 4px dashed black;
}

.card_one {
  position: relative;
  display: flex;
  width: 200px;
  height: 300px;
  border-radius: 16px;
  border: 2px solid #212529;
  box-shadow: 4px 4px 8px grey;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  background-color: #212529;
}

.card_two {
  position: relative;
  display: flex;
  width: 200px;
  height: 300px;
  border-radius: 16px;
  border: 2px solid #212529;
  box-shadow: 4px 4px 8px grey;
  background-color: #212529;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.card_three {
  position: relative;
  display: flex;
  width: 200px;
  height: 300px;
  border-radius: 16px;
  border: 2px solid #212529;
  box-shadow: 4px 4px 8px grey;
  background-color: #212529;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.card_four {
  position: relative;
  display: flex;
  width: 200px;
  height: 300px;
  border-radius: 16px;
  border: 2px solid #212529;
  box-shadow: 4px 4px 8px grey;
  background-color: #212529;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.card_five {
  position: relative;
  display: flex;
  width: 200px;
  height: 300px;
  border-radius: 16px;
  border: 2px solid #212529;
  box-shadow: 4px 4px 8px grey;
  background-color: #212529;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.card_one:hover,
.card_two:hover,
.card_three:hover,
.card_four:hover,
.card_five:hover {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.card_one_front,
.card_one_back,
.card_two_front,
.card_two_back,
.card_three_front,
.card_three_back,
.card_four_front,
.card_four_back,
.card_five_front,
.card_five_back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.card_one_front {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: #bbb;
  border-radius: 16px;
  background-image: url(/images/Walt_Disney.jpg);
  background-size: cover;
  background-position: center;
}

.card_one_back {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: #212529;
  transform: rotateY(180deg);
  border-radius: 16px;
}

.card_two_front {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: #bbb;
  border-radius: 16px;
  background-image: url(/images/SteveJobs.jpg);
  background-size: cover;
  background-position: center;
}

.card_two_back {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: #212529;
  transform: rotateY(180deg);
  border-radius: 16px;
}

.card_three_front {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: #bbb;
  border-radius: 16px;
  background-image: url(/images/Muhammad-Ali.jpg);
  background-size: cover;
  background-position: center;
}

.card_three_back {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: #212529;
  transform: rotateY(180deg);
  border-radius: 16px;
}

.card_four_front {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: #bbb;
  border-radius: 16px;
  background-image: url(/images/gandhi.jpeg);
  background-size: cover;
  background-position: center;
}

.card_four_back {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: #212529;
  transform: rotateY(180deg);
  border-radius: 16px;
}

.card_five_front {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: #bbb;
  border-radius: 16px;
  background-image: url(/images/einstein.jpg);
  background-size: cover;
  background-position: center;
}

.card_five_back {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: #212529;
  transform: rotateY(180deg);
  border-radius: 16px;
}

.card_quote {
  position: relative;
  text-align: center;
  padding: 15px;
  color: #fff;
  font-size: 16px;
}

h4 {
  position: absolute;
  margin-top: 280px;
  color: #219ebc;
}

.page_not_found {
  position: relative;
  display: flex;
  width: 90%;
  height: 500px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  top: 175px;
  margin: auto;
  line-height: 10px;
}

.page_not_found h1 {
  font-size: 120px;
}

@media only screen and (min-width: 1000px) {
  .suraj.active {
    right: 100px;
    animation: suraj 4s linear;
  }
  @keyframes suraj {
    from {
      bottom: 50px;
    }
    to {
      bottom: 132px;
    }
  }
  .chand {
    left: 150px;
    animation: chand 4s linear;
  }
  @keyframes chand {
    from {
      bottom: 80px;
    }
    to {
      bottom: 175px;
    }
  }
  ul {
    margin-left: 5px;
  }
}
@media only screen and (min-width: 1250px) {
  .ufo {
    display: none;
  }
}
@media only screen and (min-width: 1600px) {
  .work_one,
  .work_two,
  .work_three,
  .work_four,
  .work_five,
  .work_six,
  .work_seven,
  .work_eight {
    width: 515px;
  }
  .work_one,
  .work_three,
  .work_five,
  .work_seven {
    margin-left: 10%;
  }
  .work_two,
  .work_four,
  .work_six,
  .work_eight {
    margin-right: 10%;
  }
}
@media only screen and (min-width: 1900px) {
  .work_one,
  .work_two,
  .work_three,
  .work_four,
  .work_five,
  .work_six,
  .work_seven,
  .work_eight {
    width: 545px;
  }
  .work_one,
  .work_three,
  .work_five,
  .work_seven {
    margin-left: 15%;
  }
  .work_two,
  .work_four,
  .work_six,
  .work_eight {
    margin-right: 15%;
  }
}
@media only screen and (max-width: 1300px) {
  .work_one,
  .work_two,
  .work_three,
  .work_four,
  .work_five,
  .work_six,
  .work_seven,
  .work_eight {
    width: 480px;
  }
  .card_one,
  .card_two,
  .card_three,
  .card_four,
  .card_five {
    width: 180px;
    height: 300px;
  }
  #cloud1.active {
    right: 40%;
  }
  @keyframes slid {
    50% {
      right: 650px;
    }
    100% {
      right: 40%;
    }
  }
}
@media only screen and (max-width: 1200px) {
  .work_one,
  .work_two,
  .work_three,
  .work_four,
  .work_five,
  .work_six,
  .work_seven,
  .work_eight {
    width: 400px;
    height: 280px;
  }
  .card_one,
  .card_two,
  .card_three,
  .card_four,
  .card_five {
    width: 170px;
    height: 280px;
  }
  @keyframes slid {
    50% {
      right: 600px;
    }
    100% {
      right: 40%;
    }
  }
  #cloud1.active {
    right: 40%;
  }
}
@media only screen and (max-width: 1100px) {
  .card_four {
    display: none;
  }
  .card_one,
  .card_two,
  .card_three,
  .card_four,
  .card_five {
    width: 190px;
    height: 300px;
  }
}
@media only screen and (max-width: 1000px) {
  .container {
    height: 2700px;
  }
  #work {
    height: 4000px;
    flex-direction: column;
    justify-content: space-evenly;
  }
  .work_one,
  .work_two,
  .work_three,
  .work_four,
  .work_five,
  .work_six,
  .work_seven,
  .work_eight {
    width: 650px;
    height: 400px;
  }
  .container_two {
    height: 1550px;
    flex-direction: column;
  }
  .card_one {
    height: 320px;
    width: 500px;
    box-shadow: none;
    border: 2px solid black;
    border-radius: 16px;
  }
  .card_two {
    height: 320px;
    width: 500px;
    box-shadow: none;
    border: 2px solid black;
    border-radius: 16px;
  }
  .card_three {
    height: 320px;
    width: 500px;
    box-shadow: none;
    border: 2px solid black;
    border-radius: 16px;
  }
  .card_five {
    height: 320px;
    width: 500px;
    box-shadow: none;
    border: 2px solid black;
    border-radius: 16px;
  }
  .card_one:hover,
  .card_two:hover,
  .card_three:hover,
  .card_five:hover {
    transform: rotateX(180deg);
  }
  .card_one_back,
  .card_two_back,
  .card_three_back,
  .card_five_back {
    transform: rotateX(180deg);
  }
  #cloud1.active {
    right: 45%;
  }
  @keyframes slid {
    50% {
      right: 500px;
    }
    100% {
      right: 45%;
    }
  }
  #cloud3.active {
    right: 1%;
  }
  @keyframes sli3 {
    50% {
      right: 150px;
    }
    100% {
      right: 1%;
    }
  }
  .play.active,
  .play {
    height: 900px;
  }
  .suraj.active {
    right: 100px;
    animation: suraj 4s linear;
  }
  @keyframes suraj {
    from {
      top: 200px;
    }
    to {
      top: 500px;
    }
  }
  .chand {
    left: 150px;
    animation: chand 4s linear;
  }
  @keyframes chand {
    from {
      top: 220px;
    }
    to {
      top: 545px;
    }
  }
  .line1,
  .line2,
  .line3,
  .line4 {
    width: 220px;
  }
  @keyframes glow {
    50% {
      width: 240px;
      background-color: rgb(218, 188, 144);
    }
  }
  .menu_icon {
    display: block;
    position: relative;
    width: 50px;
    height: 50px;
    z-index: 1;
    top: 11%;
    right: 40px;
  }
  .menu_icon span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: #212529;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  }
  .menu_icon input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #232323;
  }
  .menu_icon input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }
  .menu_icon input:checked ~ span:nth-last-child(2) {
    transform: rotate(45deg) translate(-5px, -5.5px);
  }
  .menu_icon input:checked ~ span:nth-last-child(1) {
    opacity: 1;
    transform: rotate(-45deg) translate(-2px, -1px);
  }
  .menu_bar {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0; /* hide this */
    z-index: 2;
  }
  ul,
  li {
    display: inline;
    display: none;
    margin: 25px;
  }
  .menu ul,
  li {
    display: flex;
    flex-direction: column;
    margin: 10px;
    list-style: none;
    text-decoration: none;
  }
  .mypic {
    width: 600px;
    height: 900px;
  }
  .me {
    width: 600px;
    height: 400px;
  }
  .about {
    flex-direction: column;
    height: 1600px;
  }
}
@media only screen and (max-width: 850px) {
  @keyframes slid {
    50% {
      right: 400px;
    }
    100% {
      right: 40%;
    }
  }
  #cloud1.active {
    right: 40%;
  }
  .suraj.active {
    right: 50px;
  }
  .stary21,
  .stary22 {
    display: none;
  }
}
@media only screen and (max-width: 800px) {
  .container {
    height: 2500px;
  }
  #work {
    height: 4000px;
    flex-direction: column;
    justify-content: space-evenly;
  }
  .work_one,
  .work_two,
  .work_three,
  .work_four,
  .work_five,
  .work_six,
  .work_seven,
  .work_eight {
    width: 550px;
    height: 350px;
  }
  .play.active,
  .play {
    height: 900px;
  }
  .stary11 {
    display: none;
  }
  .suraj.active {
    height: 180px;
    width: 180px;
    right: 65px;
    animation: suraj 4s linear;
  }
  @keyframes suraj {
    from {
      top: 200px;
    }
    to {
      top: 500px;
    }
  }
  .chand {
    left: 120px;
    animation: chand 4s linear;
  }
  @keyframes chand {
    from {
      top: 220px;
    }
    to {
      top: 545px;
    }
  }
  .gola {
    width: 120px;
    height: 120px;
  }
  .gola2 {
    width: 122px;
    height: 122px;
  }
  .line1,
  .line2,
  .line3,
  .line4 {
    width: 180px;
  }
  @keyframes glow {
    50% {
      width: 200px;
      background-color: rgb(218, 188, 144);
    }
  }
  #cloud1.active {
    right: 40%;
  }
  @keyframes slid {
    50% {
      right: 350px;
    }
    100% {
      right: 40%;
    }
  }
  #cloud3.active {
    right: 1%;
  }
  @keyframes sli3 {
    50% {
      right: 100px;
    }
    100% {
      right: 1%;
    }
  }
  .mypic {
    width: 400px;
    height: 600px;
  }
  .me {
    width: 400px;
    height: 500px;
  }
  .about {
    flex-direction: column;
    height: 1400px;
  }
}
@media only screen and (max-width: 680px) {
  .container {
    height: 2400px;
  }
  #work {
    height: 3500px;
    flex-direction: column;
    justify-content: space-evenly;
  }
  .work_one,
  .work_two,
  .work_three,
  .work_four,
  .work_five,
  .work_six,
  .work_seven,
  .work_eight {
    width: 450px;
    height: 300px;
  }
  .suraj.active {
    right: 45px;
  }
  #cloud1.active {
    display: none;
  }
  @keyframes slid {
    50% {
      right: 250px;
    }
    100% {
      right: 40%;
    }
  }
  .card_one,
  .card_two,
  .card_three,
  .card_five {
    width: 430px;
  }
  #cloud3.active {
    right: 1%;
  }
  @keyframes sli3 {
    50% {
      right: 70px;
    }
    100% {
      right: 1%;
    }
  }
  .line1,
  .line2,
  .line3,
  .line4 {
    width: 170px;
  }
  @keyframes glow {
    50% {
      width: 180px;
      background-color: rgb(218, 188, 144);
    }
  }
  .name {
    display: none;
  }
  .name_mobile {
    display: block;
    height: 300px;
    width: 90%;
    text-align: center;
    margin: 50px auto;
    line-height: 25px;
    margin-top: 80px;
  }
  .name_mobile h2 {
    line-height: 38px;
  }
  .quote {
    width: 80%;
    height: 220px;
    margin-bottom: 50px;
    margin-top: -20px;
  }
  .menu.active {
    height: 610px;
  }
}
@media only screen and (max-width: 600px) {
  .container {
    height: 2220px;
  }
  #work {
    height: 3500px;
    flex-direction: column;
    justify-content: space-evenly;
  }
  .card_one,
  .card_two,
  .card_three,
  .card_five {
    width: 380px;
  }
  .work_one,
  .work_two,
  .work_three,
  .work_four,
  .work_five,
  .work_six,
  .work_seven,
  .work_eight {
    width: 400px;
    height: 280px;
  }
  .stary10,
  .stary12 {
    display: none;
  }
  .play.active,
  .play {
    height: 600px;
  }
  .chand {
    left: 80px;
    width: 130px;
    height: 130px;
    top: 200px;
    animation: chand 5s linear;
  }
  @keyframes chand {
    from {
      top: 300px;
    }
    to {
      top: 200px;
    }
  }
  .suraj.active {
    right: 40px;
    top: 180px;
    animation: suraj 5s linear;
  }
  @keyframes suraj {
    from {
      top: 300px;
    }
    to {
      top: 180px;
    }
  }
  .line1,
  .line2,
  .line3,
  .line4 {
    width: 140px;
  }
  @keyframes glow {
    50% {
      width: 160px;
      background-color: rgb(218, 188, 144);
    }
  }
  #cloud1.active {
    display: flex;
    top: 15%;
    right: 30%;
  }
  @keyframes slid {
    50% {
      right: 190px;
    }
    100% {
      right: 30%;
    }
  }
  #cloud2.active {
    top: 3%;
  }
  #cloud3.active {
    right: 0px;
    top: 3%;
  }
  @keyframes sli3 {
    50% {
      right: 55px;
    }
    100% {
      right: 0px;
    }
  }
  #cloud1.active {
    top: 3%;
  }
  .gola {
    width: 100px;
    height: 100px;
  }
  .gola2 {
    width: 102px;
    height: 102px;
  }
  .bush1 {
    position: absolute;
    width: 30px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    margin-left: 35px;
    margin-top: 30px;
  }
  .bush2 {
    position: absolute;
    width: 30px;
    height: 20px;
    background-color: #fff;
    margin-left: 50px;
    margin-top: 30px;
  }
  .bush3 {
    position: absolute;
    width: 30px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    margin-left: 66px;
    margin-top: 30px;
  }
  .bush4 {
    position: absolute;
    width: 30px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    margin-left: 50px;
    margin-top: 18px;
  }
  .name {
    display: none;
  }
  .name_mobile {
    display: block;
    height: 300px;
    width: 90%;
    text-align: center;
    margin: 50px auto;
    line-height: 25px;
    margin-top: 80px;
  }
  .name_mobile h2 {
    line-height: 38px;
  }
  .quote {
    width: 80%;
    height: 220px;
    margin-bottom: 50px;
    margin-top: -20px;
  }
  .mypic {
    margin-top: -120px;
    width: 350px;
    height: 500px;
  }
  .me {
    margin-top: -120px;
    width: 350px;
    height: 580px;
  }
  .about {
    flex-direction: column;
    border: none;
    height: 1450px;
  }
}
@media only screen and (max-width: 500px) {
  .container {
    height: 2200px;
  }
  #work {
    height: 3500px;
    flex-direction: column;
    justify-content: space-evenly;
  }
  .work_one,
  .work_two,
  .work_three,
  .work_four,
  .work_five,
  .work_six,
  .work_seven,
  .work_eight {
    width: 360px;
    height: 260px;
  }
  .card_one,
  .card_two,
  .card_three,
  .card_five {
    width: 280px;
  }
  .suraj.active {
    right: 40px;
    top: 180px;
  }
  .line1,
  .line2,
  .line3,
  .line4 {
    width: 140px;
  }
  @keyframes glow {
    50% {
      width: 160px;
      background-color: rgb(218, 188, 144);
    }
  }
  #cloud1.active {
    display: flex;
    top: 3%;
    right: 30%;
  }
  @keyframes slid {
    50% {
      right: 190px;
    }
    100% {
      right: 30%;
    }
  }
  #cloud2.active {
    top: 3%;
  }
  #cloud3.active {
    right: 0px;
    top: 3%;
  }
  @keyframes sli3 {
    50% {
      right: 55px;
    }
    100% {
      right: 0px;
    }
  }
  .name {
    display: none;
  }
  .name_mobile {
    display: block;
    height: 300px;
    width: 90%;
    text-align: center;
    margin: 50px auto;
    line-height: 25px;
    margin-top: 80px;
  }
  .name_mobile h2 {
    line-height: 38px;
  }
  .quote {
    width: 80%;
    height: 220px;
    margin-bottom: 50px;
    margin-top: -20px;
  }
  .mypic {
    margin-top: -120px;
    width: 300px;
    height: 450px;
  }
  .me {
    margin-top: -120px;
    width: 300px;
    height: 680px;
  }
  .about {
    flex-direction: column;
    border: none;
    height: 1450px;
  }
}
@media only screen and (max-width: 452px) {
  .container {
    height: 2050px;
  }
  .card_one,
  .card_two,
  .card_three,
  .card_five {
    width: 220px;
  }
  #work {
    height: 3050px;
    flex-direction: column;
    justify-content: space-evenly;
  }
  .work_one,
  .work_two,
  .work_three,
  .work_four,
  .work_five,
  .work_six,
  .work_seven,
  .work_eight {
    width: 300px;
    height: 220px;
  }
  @keyframes suraj {
    from {
      top: 250px;
    }
    to {
      top: 180px;
    }
  }
  @keyframes chand {
    from {
      top: 280px;
    }
    to {
      top: 200px;
    }
  }
  .stary5 {
    display: none;
  }
  #cloud1.active {
    display: none;
    top: 3%;
    right: 30%;
  }
  #cloud2.active {
    left: 16%;
  }
  @keyframes sli {
    50% {
      left: 0;
    }
    100% {
      left: 16%;
    }
  }
  .name {
    display: none;
  }
  .name_mobile {
    display: block;
    height: 300px;
    width: 90%;
    text-align: center;
    margin: 50px auto;
    line-height: 25px;
    margin-top: 80px;
  }
  .name_mobile h2 {
    line-height: 38px;
  }
  .quote {
    width: 80%;
    height: 220px;
    margin-bottom: 50px;
    margin-top: -20px;
  }
  .h_one,
  .h_two,
  .h_three,
  .h_four,
  .h_five,
  .h_six,
  .h_seven,
  .h_eight {
    font-size: 22px;
  }
}
@media only screen and (max-width: 352px) {
  .container {
    height: 1850px;
  }
  #work {
    height: 2800px;
    flex-direction: column;
    justify-content: space-evenly;
  }
  .work_one,
  .work_two,
  .work_three,
  .work_four,
  .work_five,
  .work_six,
  .work_seven,
  .work_eight {
    width: 200px;
    height: 180px;
  }
  .stary20,
  .stary6 {
    display: none;
  }
  #cloud2.active {
    left: 15%;
    display: none;
  }
  @keyframes sli {
    50% {
      left: 0;
    }
    100% {
      left: 15%;
    }
  }
  #cloud3.active {
    right: 0px;
    top: 3%;
  }
  @keyframes sli3 {
    50% {
      right: 120px;
    }
    100% {
      right: 0px;
    }
  }
  .suraj.active {
    right: 45px;
  }
  .name {
    display: none;
  }
  .name_mobile {
    display: block;
    height: 300px;
    width: 90%;
    text-align: center;
    margin: 50px auto;
    line-height: 25px;
    margin-top: 80px;
  }
  .name_mobile h2 {
    line-height: 38px;
  }
  .quote {
    width: 80%;
    height: 250px;
    margin-bottom: 50px;
    margin-top: -20px;
  }
  #logo {
    margin-left: 10px;
  }
  .menu_icon {
    right: 10px;
  }
  .h_one,
  .h_two,
  .h_three,
  .h_four,
  .h_five,
  .h_six,
  .h_seven,
  .h_eight {
    font-size: 16px;
  }
  .mypic {
    margin-top: -120px;
    width: 240px;
    height: 400px;
  }
  .me {
    margin-top: -120px;
    width: 240px;
    height: 780px;
  }
  .email {
    font-size: 12px;
  }
  .about_text {
    padding: 15px 20px;
  }
  .about {
    flex-direction: column;
    border: none;
    height: 1450px;
  }
}/*# sourceMappingURL=style.css.map */