body {
    background-color: #ffc0cb;
    justify-content: center;
    display: flex;
    height: 120vh;
    flex-direction: column;
    font-size: 100%;
  }

  nav {
    margin-left: 5%;
    text-align: absolute;
    top: 10px;
    right: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
  }
  
  nav a {
    text-decoration: none;
    color: black;
    align-items:center;
  }

  h2 {
    margin-bottom: 0%;
    margin-left: 5%;
    font-size: 300%;
    font-family: 'Catherova', sans-serif;
    align-items: left;
  }
  
  .paragraph-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
  }
  
  .line {
    display: block;
    margin: 0 auto;
    border-left: 2px solid black;
    height: 100%;
    align-self: center;
  }
  
  .left {
    flex: 1;
    margin-right: 50px;
  } 

  .right {
    flex: 1;
    margin-left: 10%;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
  } 

.right .text-box .skill-box {
  width: 300px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.5;

}

.text-box {
  margin-top: 30%;
  font-family: 'Poppins', sans-serif;
}

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.skill-box {
  width: 100%;
  margin: 25px;
}

.skill-box .title{
display: block;
font-family: "Poppins", sans-serif;
font-size: 14px;
font-weight: 600;
color: #000000;

}

.skill-box .skill-bar {
  height: 8px;
  width: 100%;
  border-radius: 6px;
  margin-top: 6px;
  background: rgba(0,0,0,0.1);

}

.skill-bar .skill-per{
position: relative;
display: block;
height: 100%;
width: 40%;
border-radius: 6px;
background:#fff;
animation: progress 0.4s ease-in-out forwards;
opacity: 0;
}

.skill-per.java {
 width: 30%;

}

.skill-per.ue {
  width: 30%;
    
 }

@keyframes progress {
  0%{
    width: 0;
    opacity: 0
  }
  100%{
    opacity: 1;
  }
}

.skill-per .tooltip {
position: absolute;
right: -14px;
top: 16px;
font-size: 9px;
font-weight: 500;
color:#ffc0cb;
padding: 2px 6px;
border-radius: 3px;
background: #fff

}

*:before,
*:after{
    padding: 0;
    margin: 0;
}

button{
    height: 100px;
    width: 250px;
    background-color: #ffc0cb;
    border: 5px solid #4DB8AF;
    position: relative;
    cursor: pointer;
}
button:before,
button:after{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #ffc0cb;
    border: 5px solid #4DB8AF;
    transition: 0.3s;
}
button:before{
    bottom: -15px;
    left: -15px;
    z-index: -1;
}
button:after{
    content: attr(data-text);
    color: #4DB8AF;
    font-family: 'Poppins',sans-serif;
    font-size: 22px;
    letter-spacing: 3px;
    display: grid;
    place-items: center;
    top: -15px;
    right: -15px;
    z-index: 1;
}
button:hover:before{
    bottom: -5px;
    left: -5px;
}
button:hover:after{
    top: -5px;
    right: -5px;
    background-color: #4DB8AF;
    color: #ffc0cb;
}