@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #0a2b3c;
}

.container{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px;
    border-radius: 10px;
    box-shadow: -1px -1px 2px rgba(255,255,255,0.25),
                inset 2px 2px 5px rgba(255,255,255,0.25),
                8px 30px 30px rgba(0,0,0,0.4),
                inset -2px -2px 5px rgba(0,0,0,0.3);
}

.container h2{
    margin-bottom: 10px;
    font-weight: 500;
    color: #E3F6FF;
}

.container .skills{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    padding-right: 10px;
    box-shadow: -1px -1px 2px rgba(255,255,255,0.25),
                inset 2px 2px 5px rgba(255,255,255,0.25),
                8px 30px 30px rgba(0,0,0,0.4),
                inset -2px -2px 5px rgba(0,0,0,0.3);
}

.container .skills h3{
    min-width: 180px;
    text-align: right;
    padding-right: 20px;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
}

.container .skills .rating{
    position: relative;
    display: flex;
    margin: 10px 0;
    flex-direction: row-reverse;
}

.container .skills .rating input{
    position: relative;
    width: 20px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    -webkit-appearance:none;
    appearance: none;
    overflow: hidden;
}

.container .skills .rating input::before{
    content: '\f005 ';
    position: absolute;
    font-family: fontAwesome;
    font-size: 34px;
    position: absolute;
    left: 4px;
    color: #030b0f;
    transition: 0.5s;
}

.container .skills .rating input:nth-child(2n+1)::before{
    left: initial;
    right: 4px;
}

.container .skills .rating input:hover ~ input::before,
    .container .skills .rating input:hover::before,
    .container .skills .rating input:checked ~ input::before,
    .container .skills .rating input:checked::before{
    color: #FF8B13;
}