
section ul {
    list-style-type: none;
   
}

a {
    color: #4CAF50;
}

.skills-list{
    justify-content: center;
}

.wrapper {
    display: flex;
    padding: 5px;
    justify-content: center;

}

.collapsible {
    max-width: 1000px;
    overflow: hidden;
    font-weight: 500;
}

.collapsible label {
    position: relative;
    font-size: large;
    font-weight: 800;
    background: rgba(0, 14, 5, 0.356);
    box-shadow: 0 5px 11px 0 rgb(0, 0, 0, .1), 0 4px 11px 0 rgba(0,0, 0, .08);
    color: white;
    display: block;
    margin-bottom: 10px;
    cursor: url('cursor/pointer-img.png'), auto;
    padding: 15px;
    border-radius: 4px;
    z-index: 1;

}

.collapsible label:after{
    content: "";
    position: absolute;
    right: 15px;
    top: 15px;
    width: 18px;
    height: 18px;
    background: url("cursor/right-thin-chevron.png") no-repeat 0 0;
}

.collapsible label:hover {
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.432), 0 4px 11px 0 rgba(0,0, 0, .08);
    background: rgba(0, 14, 5, 0.507);
}

.collapsible input:checked + label:after{
    transform: rotate(90deg);
    transform: all 0.3s ease;


}

.collapsible-text{
    max-height: 1px;
    overflow: hidden;
    border-radius: 4px;
    line-height: 1.4;
    position: relative;
    top: -100%;
    opacity: 0.5;
    transform: all 0.3s ease;

}

.collapsible input:checked ~ .collapsible-text {
    max-height: 500px ;
    padding-bottom: 25px;
    box-shadow: 0 5px 11px 0 rgb(0, 0, 0, .1), 0 4px 11px 0 rgba(0,0, 0, .08);
    background: rgba(0, 14, 5, 0.13);
    color: white;
    opacity: 1;
    top: 0;
}

.collapsible input{
    display: none;
}


.collapsible-text h2 {
    margin-bottom: 10px;
    padding: 15px 15px 0;

}

.collapsible-text p {
    padding-left: 15px;
    padding-right: 15px;
    font-size: medium;
}

.relevant-skills{
    margin-top: 15px;
}