*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color:gray;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}
#question{
    background-color:grey;
    box-shadow:1px 1px 5px rgba(0, 0, 0, 0.5);
    border: 1px solid black;
    min-height: 100vh;/*ياخذ جهده في الطول لو يشتي اكثر يشل*/
    max-width: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;/*يجلس المحتوى في النص */    
}
#question .accordion{
    width: 100%;
    background-color:white;
    padding: 10px 10px;  
    border-radius: 5px;  
    box-shadow:1px 1px 5px rgba(0, 0, 0, 0.5);        
    
}
#question .accordion h1{
    font-size: 40px;
    color: blue;
    text-align: center;
}
#question .accordion h2{
    /* background-color: aqua; */
    box-shadow: 1px 1px 5px rgba(0, 0, 0.2);
    font-size: 25px;
    color:black;
}
.accordion-haeder {
    box-shadow: 1px 1px 5px rgba(0, 0, 0.2);
    cursor: pointer;
    /* border: 2px solid black; */
    padding: 10px 10px;
    /* background-color: rgb(160, 168, 169); */
    justify-content: space-between;
    display: flex;
    /* position: relative; */
}
.accordion-haeder:hover{

    background-color:gray;
}
.btn{
    cursor: pointer;
    border-radius: 20px;
    width: 25px;
    height: 25px;
    font-size: 20px;
    border: none;
    background-color:rgb(68, 68, 240);
    color: white;
}
.btn:hover{
    background-color: greenyellow;
    color: black;
}
.accordion-content{
    /* opacity: 0; تقدر تخفيها هاكذا */
    display: none;/*يخفي البرقراف */
     box-shadow: 1px 1px 5px rgba(0, 0, 0.2);
    background-color: aliceblue;
    padding: 15px 20px;
}
.accordion-content.active{
    background-color: aqua;
    box-shadow: 1px 1px 5px rgba(0, 0, 0.2);
    /* opacity: 1;تقدر تضهرها هاكذا */
    display: block;/*يقوم باضهارها */
}