.accordion{
    margin: 60px auto;
    width: 70%;
}

.accordion li{
    list-style: none;
    width: 100%;
    margin: 20px;
    padding: 10px;
    border-radius: 8px;
    background: #e3edf7;
    box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15),
                -6px -6px 10px -1px rgba(225, 225, 225, 0.25);
}

.accordion li label{
    display: flex;
    align-items: center;
    padding: 10px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

label::before{
    content: '+';
    margin-right: 10px;
    font-size: 24px;
    font-weight: 600;
}

input[type="radio"]{
    display: none;
}

.accordion .content{
    color: #555;
    padding: 0 10px;
    line-height: 26px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s, padding 0.5s;
}

.accordion input[type="radio"]:checked + label + .content{
    max-height: 550px;
    padding: 10px 10px 20px;
}

.accordion input[type="radio"]:checked + label::before{
    content: '-';
}

/*Accordon ends here*/

/*final part starts here*/

.final{
    display: flex;
    flex-direction: row;
    background-color:  rgb(152, 152, 206);
    height: 40vh;
    justify-content: space-around;
}

.text{
    align-content: center;
    padding: 20px;
}

.text h1{
    font-weight: bolder;
    color: #222;
}

.text p{
    color: #333;
    max-width: 400px;
}

.me{
    margin-right: 20%;
    padding: 10px;
}