* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(1, 1, 33);
}

.wrapper {
    /* border: 1px solid #fff; */
    width: 40%;
    min-width: 500px;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
}

.container {
    width: 100%;
    padding: 50px 30px;
    background-color: rgba(255,255,255,.06);
    border-radius: 10px;
    box-shadow: 0 20px 30px rgba(0,0,0,.2);
    backdrop-filter: blur(10px);
}

.container * {
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    font-weight: 500;
}

h2 {
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.skill:not(:last-child) {
    margin-bottom: 30px;
}

.details {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.bar {
    position: relative;
    background-color: rgba(255,255,255,0.06);
    padding: 7px 10px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.bar div {
    position: relative;
    width: 100%;
    height: 5px;
    border-radius: 10px;
    background-color: #badefc;
    border: 1px solid #1c97fc;
    box-shadow: 0 0 5px rgba(28,151,252,0.6);
}