* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
html {
  scroll-behavior: smooth;
}
.navbar {
  width: 100%;
  height: 70px;
  background-color:#c1c8ff;
  position: fixed;
  z-index: 1;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}
.main {
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(unsplash.jpeg);
  background-position: center;
  background-size: cover;
  height: 800px;
  background-attachment: fixed;
}
.icon {
  width: 100%;
  float: left;
}
.logo {
  color: #333;
  font-size: 35px;
  font-family: Arial;
  padding-left: 20px;
  float: left;
  padding-top: 10px;
}
.icon p {
  color: white;
  margin-top: 25px;
}
.menu {
  height: 60px;
  width: 100%;
  padding-right: 40px;
  position: fixed;
  z-index: 10;
}

ul {
  float: right;
  display: flex;
  justify-content: center;
  align-items: center;
}
ul li {
  list-style: none;
  margin-left: 50px;
  margin-top: 20px;
  font-size: 15px;

}
ul li a {
  text-decoration: none;
  color: #fff;
  font-family: Arial;
  font-weight: bold;
  transition: 0.4s ease-in-out;
}
ul li a:hover {
  color: black;
}
.btn {
  width: 100px;
  height: 40px;
  background: #c1c8ff;
  border: 2px solid #2ecb72;
  margin-top: 13px;
  color: #fff;
  font-size: 15px;
  border-bottom-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.btn:focus {
  outline: none;
}
.content {
  width: 1200px;
  height: auto;
  margin: auto;
  color: #fff;
  position: relative;
  margin-top: 200px;
}
.content .par {
  padding-left: 20px;
  padding-bottom: 25px;
  font-family: Arial;
  letter-spacing: 1.2px;
  line-height: 5px;
}
.content .par1 {
  margin-top: 30px;
}
.content h1 {
  font-family: "Times New Roman";
  font-size: 50px;
  padding-left: 20px;
  margin-top: 10px;
  letter-spacing: 2px;
}
.content .cn {
  width: 160px;
  height: 40px;
  background: #a685e2;
  border: none;
  margin-bottom: 10px;
  margin-left: 20px;
  font-size: 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.4s ease;
}
.content .cn a {
  text-decoration: none;
  color: #000;
  transition: 0.3s ease;
}
.cn:hover {
  background-color: #fff;
}
.content span {
  color: #b1b2ff;
  font-size: 60px;
}
.main-about {
  height: 700px;
  width: 100%;
  position: relative;
  background: #c1c8ff;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}
.main-about .foto {
  position: absolute;
  top: 195px;
  float: right;
  right: 5px;
  padding-right: 110px;
}
.main-about .par2 {
  position: absolute;
  width: 50%;
  left: 50px;
  top: 295px;
  font-size: 25px;
}
.main-about h2{
  border-radius: 10px;
  padding: 10px;
  font-size: 30px;
  padding-bottom: 5px;
  letter-spacing: 2px;
  text-align: center;
  position: relative;
  left: 42%;
  width: 15%;
  font-family: "Sans-Serif";
  top: 110px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
}
html,
body {
  display: grid;
  place-items: center;
  height: 500px;
  width: 100%;
  background: #c1c8ff;
}
.project {
  height: 100px;
  left: 3%;
}
.skills {
  height: 700px;
}
.skills-bar {
  width: 900px;
  background: #e0ccff;
  border-radius: 10px;
  padding: 25px 30px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  margin-top: 250px;
  margin-bottom: 150px;
}
.skills-bar .bar {
  margin: 20px 0;
}
.skills-bar .bar:first-child {
  margin-top: 0px;
}
.skills-bar .bar .info span {
  font-size: 17px;
  font-weight: 500;
  opacity: 0;
  animation: showText 0.5s 1s linear forwards;
}
@keyframes showText {
  100% {
    opacity: 1;
  }
}

.skills-bar .bar .progress-line {
  height: 10px;
  width: 100%;
  background: #f0f0f0;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.05),
    0px 1px rgba(255, 255, 255, 0.8);
  position: relative;
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: left;
  animation: animate 1s cubic-bezier(1, 0, 0.5, 1) forwards;
}
.progress-line.html span {
  width: 35%;
}
.progress-line.css span {
  width: 30%;
}
.progress-line.php span {
  width: 20%;
}
.progress-line.java-script span {
  width: 17%;
}
@keyframes animate {
  100% {
    transform: scaleX(1);
  }
}
.bar .progress-line span {
  height: 100%;
  background: #6665ee;
  position: absolute;
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: left;
  animation: animate 1s cubic-bezier(1, 0, 0.5, 1) forwards;
}
.progress-line.html span::after {
  content: "35%";
}
.progress-line.css span::after {
  content: "30%";
}
.progress-line.php span::after {
  content: "20%";
}
.progress-line.java-script span::after {
  content: "17%";
}
.skills-bar .bar .info {
  margin-bottom: 5px;
}
.bar .progress-line span::before {
  position: absolute;
  right: 0;
  top: -10px;
  height: 0;
  width: 0;
  border: 7px solid transparent;
  border-block-start-width: 0px;
  border-right-width: 0px;
  border-top-color: #000;
  opacity: 0;
  animation: showText2 0.5s 1.5s linear forwards;
}
.bar .progress-line span::after {
  position: absolute;
  right: 0;
  top: -28px;
  color: #fff;
  font-size: 12px;
  padding: 1px 8px;
  font-weight: 500;
  border-radius: 3px;
  background: #000;
  border-radius: 3px;
  content: 80%;
  opacity: 0;
  animation: showText2 0.5s 1.5s linear forwards;
}
@keyframes showText2 {
  100% {
    opacity: 1;
  }
}
.project {
  position: relative;
  text-align: center;
  bottom: 600px;
}

.project h1 {
  font-family: "Sans-serif";
  border-radius: 10px;
  padding: 10px;
  font-size: 30px;
  padding-left: 20px;
  letter-spacing: 2px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}
.tombol {
  background: #b1b2ff;
  border: none;
  outline: none;
  border-radius: 6px;
  color: #fff;
  padding: 10px;
  font-weight: bold;
}
.tombol:hover {
  cursor: pointer;
  background: #fff;
  border: none;
  outline: none;
  border-radius: 6px;
  color: #a084cf;
  padding: 10px;
  font-weight: bold;
}
.portofolio .box-container {
  display: flex;
  margin-top: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 0;
}
.portofolio .box-container .box {
  height: 20rem;
  width: 20rem;
  border-radius: 2rem;
  margin: 1rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  background: #6665ee;
  margin-bottom: 110px; 
}
.portofolio .box-container .box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.portofolio .box-container .box:hover img {
  transform: scale(1.2);
}
.portofolio h1 {
  font-size: 30px;
  text-align: center;
}
.projects-portofolio {
  height: 700px;
  width: 100%;
  background: #c1c8ff;
  margin-bottom: -500px;
  box-shadow: -5px -5px 5px rgba(0, 0, 0, 0.2);
}
.projects-portofolio h2 {
  margin-top: 20px;
  border-radius: 10px;
  padding: 10px;
  font-size: 30px;
  letter-spacing: 2px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  left: 38%;
  width: 23%;
  top: 95px;
  font-family: "Sans-serif";
  
}
.contact h2 {
  border-radius: 10px;
  margin-top: -160px;
  padding: 10px;
  font-size: 30px;
  padding-bottom: 5px;
  letter-spacing: 2px;
  text-align: center;
  position: relative;
  left: 40%;
  width: 19%;
  font-family: "Sans-Serif";
  top: 40px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}
.contact {
  width: 100%;
  background: #c1c8ff;
  margin-top:180px;
}
.info-social {
  height: 600px;
  width: 100%;
  margin-top: 250px;
  background: #c1c8ff;
  margin-bottom: -500px;
  box-shadow: -5px -5px 5px rgba(0, 0, 0, 0.2);
}
.me{
  text-align:center;
  padding:10px;
  margin-top: -220px;
}
.header {
  display: flex;
  justify-content: space-between;
  /* justify-content: flex-end; */
  align-items: center;
  padding: 30px 10%;
}
@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap");
      
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 190px;
  margin-top: -120px;
}
.wrapper .icon {
  margin: 0 20px;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 2;
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
.wrapper .icon span {
  display: block;
  height: 60px;
  width: 60px;
  background: #fff;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .icon span i {
  line-height: 60px;
  font-size: 25px;
  color: #000;
  transition-delay: .25s;
}
.wrapper .icon:hover i{
  color: #f1f1f1;
}
.wrapper .icon .tooltip {
  position: absolute;
  top: 0;
  z-index: 1;
  background: #fff;
  color: #fff;
  padding: 10px 18px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 25px;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .icon:hover .tooltip {
  top: -70px;
  opacity: 1;
  pointer-events: auto;
}
.icon .tooltip:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  background: #fff;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%) rotate(45deg);
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .icon:hover span {
  color: #fff;
}
.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.4);
}
.wrapper .twitter:hover span,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip:before {
  background: #46c1f6;
}
.wrapper .instagram:hover span,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip:before {
  background: #e1306c;
}
.wrapper .github:hover span,
.wrapper .github:hover .tooltip,
.wrapper .github:hover .tooltip:before {
  background: #333;
}
.copy-right p { 
  text-align: center;
  width: 100%;
  margin-top: 70px;
}
.par3{
  position: absolute;
  border-radius: 10px;
  padding-bottom: 5px;
  letter-spacing: 2px;
  text-align: center;
  right: 40%;
  top: 20%;
  width: 22%;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  margin-left: 150px;
  height: 7%;
}
.par3 h2{
  font-family: "Sans-Serif";
  font-size: 30px;
}
.school .sd h3{
  text-align: center;
  font-size: 35px;
}
.school .sd p{
  font-size:25px;
}
.school .sd{
 box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
 height:30%;
 text-align: center;
 padding-top:30px;
 padding-bottom: 40px;
 width: 30%;
 border-radius: 10px;
 margin: 10px;
 margin-top: 290px;
 overflow: hidden;
 margin-left:60px;
 background: #e0ccff;
 margin-bottom: 100px;
}
.school .smp h3{
 text-align: center;
 font-size: 30px;
}
.school .smp p{
 font-size:25px;
}
.school .smp{
 padding-top: 30px;
 padding-bottom: 40px;
 box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
 height:30%;
 text-align: center;
 width: 30%;
 border-radius: 10px;
 margin: 10px;
 overflow: hidden;
 margin-left:15px;
 background: #e0ccff;
 margin-top: 290px;
}
.school .smk h3{
 text-align: center;
 font-size: 30px;
}
.school .smk p{
 font-size:25px;
}
.school .smk{
 padding-top: 30px;
 padding-bottom: 40px;
 box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
 height:30%;
 text-align: center;
 width: 30%;
 border-radius: 10px;
 margin: 10px;
 overflow: hidden;
 bottom: 40px;
 margin-right:60px;
 background: #e0ccff;
 margin-top: 290px;
}
.school{
  position: relative;
 display: flex;
 height: 610px;
 width: 100%;
 background: #c1c8ff;
 margin-bottom: -200px;
 box-shadow: -5px -5px 5px rgba(0, 0, 0, 0.2);
}
