*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background: url(./images/workspace-image.jpg) no-repeat center center/cover;
    height: 100vh;
    display:flex;
    justify-content: center;
    align-items: center;
}
.container{
    width: 65%;
    background-color: blanchedalmond;
    padding: 20px;
    border-radius: 10px;
}
.container .title{
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 15px;
}
.content-container .question{
    padding: 12px 0;
    cursor: pointer;
    font-size: 1.2rem;
    border-bottom: 3px solid burlywood;
    position: relative;
}
.content-container .question::after{
    content: '+';
    position: absolute;
    right: 10px;
}
.container .content-container .answer{
    padding-top: 20px;
    font-size: 1 rem;
    line-height: 1.5;
    width: 100%;
    height: 0px;
    overflow: hidden;
    transition: 500ms;
}
/*javascript styling */

.content-container.active .answer{
    height: 150px;
}
.content-container.active .question{
    font-size: 1rem;
    transition: 500ms;
}
.content-container.active .question::after{
    content: '-';
    font-size: 30px;
    transition: 800ms;
    margin-bottom: 50px;
}
 