*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body{
    background-image: url(background-pattern-mobile.svg);
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}
 .card{
    background: #fff;
    border-radius: 15px;
    box-shadow: 1px 5px 1px  1px #cac8c8;
    padding: 1rem;
    margin-top: 1rem;
 }
 .head{
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
 }
 .container .card h1{
    font-weight: 600;
    font-size: 2.5rem;
    margin-left: 0.3rem;
 }
 .questions-Card .questions p{
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
 }
 .questions-Card .questions p:hover{
    color:purple;
 }
 .questions{
    display: flex;
    justify-content: space-between;
    align-items: center;   
 }
 .questions-Card{
    margin-bottom: 1rem;
    border-bottom: 1px solid  #cac8ca;
    padding-bottom: 1rem;
    cursor: pointer;
 }
 .toggleimg{
    display: flex;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    padding: 0;
 }
 .minusIcon{
    display: none;
 }
 .answer{
    display: none;
 }
 .answer p{
    color:#776c77;
    margin-top: 1rem;
 }
@media screen and (min-width: 1024px){
    body{
        background-image: url(background-pattern-desktop.svg);
        background-repeat: no-repeat;
    }
    main{
      padding: 2rem;
    }
    .container{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2rem;
    }
    .card{
        width: 60%;
    }
    .answer{
      width: 80%;
    }
}