
body{
  background: black;
  color: white;
  width: 100%;
  overflow-x: hidden;
}
.header{
  display: flex;
  gap: 50px;
  position: absolute;
  top: 60px;
  font-weight: 800;
  left: 250px;
  color: #50056a;
  background: #e8affb;
  border: 2px solid #51066b;
  padding: 8px;
  border-radius: 18px;
  z-index: 2;
  cursor: pointer;
}

a {
  color: unset;
  text-decoration: unset;
}
.something{
  position: absolute;
  height: 623px;
  width: 403px;
  background: #50056a;
  margin-top: 5px;
  z-index: -1;
  margin-left: -10px;
  border-radius: 55% 76% 86% 0;
}
.somthingaboutme{
  width: 500px;
}
.pic{
  z-index: -1;
    width: 100%;
    height: 156%;
    transform: translate3d(0px, 0px, 0px);
    content-visibility: visible;
    position: absolute;
    left: -392px;
    margin-top: -1px;
}
.heading{
  font-size: 100px;
}
.headings{
  font-size: 60px;
}

.details{
  font-size: 20px;
    font-style: oblique;
}

.hero {
    width: unset;
    height: max-content;
    float: right;
    margin: 85px 180px 0 0;
    position: absolute;
    top: 1%;
    left: 55%;
  }
  .aboutme{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 200px;
  }
  .skills{
    width: 500px;
    font-weight: 800;
    color: #50056a;
  }

  i {
    font-size: 50px;
    margin: 54px;
}


  /* section{
    height: 500px;
  } */



  .html{
    width: 100%;
    background: #e8affb;
    display: grid;
    justify-content: right;
  }

  .css{
    width: 99%;
    background: #e8affb;
    display: grid;
    justify-content: right;
  }

  .javascript{
    width: 70%;
    background: #e8affb;
    display: grid;
    justify-content: right;
  }

  .jQuery{
    width: 65%;
    background: #e8affb;
    display: grid;
    justify-content: right;
  }

  .php{
    width: 75%;
    background: #e8affb;
    display: grid;
    justify-content: right;
  }

  .sql{
    width: 80%;
    background: #e8affb;
    display: grid;
    justify-content: right;
  }
  .wordpress{
    width: 70%;
    background: #e8affb;
    display: grid;
    justify-content: right;
  }

  .c{
    width: 50%;
    background: #e8affb;
    display: grid;
    justify-content: right;
  }

  .cpp{
    width: 60%;
    background: #e8affb;
    display: grid;
    justify-content: right;
  }

  .dropdown-menu {
    background-color: #df9df5;
  }
  a{
    cursor: pointer;
  }
  .language{
      display: inline-block;
      width: auto;
      float: right;
      margin: 50px;
      padding: 5px;
      background: transparent;
      color: #51066b;
      border: 2px solid;
      border-radius: 10px;
  }
  section:nth-child(1):before {
    content: '';
    position: absolute;
    height: 400px;
    width: 100%;
    top: 0;
    background: #e8affb;
    left: 0;
    z-index: -5;
  }

  .wave {
    position: absolute;
    z-index: -1;
    top: 400px;
  }

  #hero {
    color: #50056a;
    margin-top: 20%;
    margin-left: 13%;
  }

  .flip-card {
    width: 300px;
    display: inline-block;
    perspective: 1000px;
    /* Remove this if you don't want the 3D effect */
  }

  /* This container is needed to position the front and back side */
  .flip-card-inner {
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }

  /* Do an horizontal flip when you move the mouse over the flip box container */
  .flip-card .flip-card-inner {
    animation: rotation 5s linear 2s infinite alternate;
    transform: rotateY(180deg);
  }

  @keyframes rotation {
    0% {
      transform: rotateY(0deg);
    }

    50% {
      transform: rotateY(180deg);
    }

    100% {
      transform: rotateY(360deg);
    }
  }

  /* Position the front and back side */
  .flip-card-front,
  .flip-card-back {
    position: absolute;
    width: 100%;
    margin-top: -38px;
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;
  }



  /* Style the back side */
  .flip-card-back {
    transform: rotateY(180deg);
  }

  .work {
    display: inline-block;
    padding: 6px;
    border: 2px solid rebeccapurple;
  }

  th,
  td {
    padding: 10px;
    text-align: center;
  }
  .latest-word{
    height: 300px;
    width: 400px;
    border: 2px solid rebeccapurple;
    margin: 10px;
    display: inline-block;
  }
  .me{
      width: unset;
  }
  .somethingaboutme{
    width: 500px;
  }
  .sections{
    display: flex;
    justify-content: space-around;
  }

  a:hover {
    color: unset;
}



  .button {
    --color: #e8affb;
    padding: 10px;
    background-color: transparent;
    border-radius: .3em;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: .5s;
    font-weight: 400;
    font-size: 17px;
    border: 1px solid;
    font-family: inherit;
    text-transform: uppercase;
    color: purple;
    z-index: 1;
   }
   
   .button::before, .button::after {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    background-color: var(--color);
    transition: 1s ease;
   }
   
   .button::before {
    top: -1em;
    left: -1em;
   }
   
   .button::after {
    left: calc(100% + 1em);
    top: calc(100% + 1em);
   }
   
   .button:hover::before, .button:hover::after {
    height: 410px;
    width: 410px;
   }
   
   .button:hover {
    color: rgb(10, 25, 30);
   }
   
   .button:active {
    filter: brightness(.8);
   }


   input[type=text],input[type=email], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #51066b;
    margin-bottom: 16px;
    resize: vertical;
  }
  
  
  
  /* Style the container/contact section */
  .container {
    border-radius: 5px;
    background-color: black;
    padding: 20px;
    height: 100vh;
  }
  
  /* Create two columns that float next to eachother */
  .column {
    float: left;
    width: 50%;
    margin-top: 6px;
    padding: 20px;
  }
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
   #certificate{
     display: none;

   }
   .herodiv{
     height:450px
   }
   #close{
    position: fixed;
    right: 20px;
    top: 20px;
   }
   
   #certificate img{
     height: 500px;
     width: 500px;
     position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
   }