*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
}
html{
    font-size: 62.5%;
    overflow-x: hidden;
}
body{
    background-color: black;
    color: white;
}
.skills{
    min-height: auto;
    padding-bottom: 0.5rem;
    padding-left: 6rem;
    padding-right: 6rem;
}
.skills .heading{
    font-size: 40px;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 3rem;
}
.skills .heading span{
    color: #0ef;
}
.skills .skills-row{
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
}
.skills-row .skills-column{
    flex: 1 1 40rem;
}
.skills-column .title{
    font-size: 2.5rem;
    margin: 0 0 1.5rem;
}
.skills-box .skills-content{
    position: relative;
    border: .2rem solid #0ef;
    border-radius: .6rem;
    padding: 0 1.5rem;
}
.skills-content .progress{
    padding: 0.3rem 0;
}
.skills-content .progress h3{
    font-size: 1.5rem;
    display: flex;
    justify-content: space-between;
}
.skills-content .progress .bar{
    height: 2.5rem;
    border-radius: .6rem;
    border: .2rem solid #0ef;
    padding: .5rem;
    margin: 1rem 0;
}
.skills-content .progress .bar span{
    display: block;
    height: 100%;
    border-radius: .3rem;
    background-color: #0ef;
}
.skills-column:nth-child(1) .skills-content .progress:nth-child(1) .bar span{
    width: 70%;
}
.skills-column:nth-child(1) .skills-content .progress:nth-child(2) .bar span{
    width: 80%;
}
.skills-column:nth-child(1) .skills-content .progress:nth-child(3) .bar span{
    width: 80%;
}
.skills-column:nth-child(1) .skills-content .progress:nth-child(4) .bar span{
    width: 90%;
}
.skills-column:nth-child(1) .skills-content .progress:nth-child(5) .bar span{
    width: 90%;
}
.skills-column:nth-child(1) .skills-content .progress:nth-child(6) .bar span{
    width: 70%;
}
.skills-column:nth-child(1) .skills-content .progress:nth-child(7) .bar span{
    width: 60%;
}
.skills-column:nth-child(2) .skills-content .progress:nth-child(1) .bar span{
    width: 85%;
}
.skills-column:nth-child(2) .skills-content .progress:nth-child(2) .bar span{
    width: 85%;
}
.skills-column:nth-child(2) .skills-content .progress:nth-child(3) .bar span{
    width: 70%;
}
.skills-column:nth-child(2) .skills-content .progress:nth-child(4) .bar span{
    width: 70%;
}
@media screen and (max-width:600px) {
    .skills-column{
        margin-left: -2rem;
        margin-right: -2rem;
    }
    .skills-row{
        padding-bottom: 3rem;
    }
}
