@charset "UTF-8";

main{
    background-color: #00000060;
    width: 100%;
}

#Back{
    object-fit: cover;
    position: fixed;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    top: 0;
    text-align: center;
}

#faq-top{
    background-color: #00000060;
}

.faq-about{
    margin: 0 auto;
    padding: 1rem;
    background-color: #55555560;
    display: flex;
    align-content: center;
    flex-direction: column;

     *{
        margin: auto;
    }

    h2{
        text-align: center;
        font-size: 3rem;
        color: #f0efe6;
    }
    p{
        width: 60%;
        text-align: left;
        font-size: 2rem;
        color: #faf9f2;
    }
    ul{
        width: 50%;
        text-align: left;
        font-size: 2rem;
        color: #faf9f2;
    }
}

.qa-item{
    margin: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 5vh;
    margin-bottom: 5vh;
    background-color: #55555560;
     .image{
        display: flex;
        position: relative;
        top: 2rem;
         img{
            width: 30rem;
            max-height: 20rem;
            padding: 0.2rem;
        }
    }
     .content{
        margin-top: 3%;
        margin-bottom: 1%;
        height: min-content;
        width: 50%;
        padding-top: 0;
        color: #f0efe6;
         h3{
            margin: 0;
            font-size: 2rem;
        }
         p{
            margin-left: 1rem;
            font-size: 1.8rem;
        }
         li{
            font-size: 1.8rem;
         }
         .link-button{
            float: right;
            width: 25rem;
            height: 5rem;
            border-color: #f0efe6;
            border-style: solid;
            box-shadow: none;
            font-size: 1.5rem;
            transition-property: all;
            transition-duration: 100ms;
             a{
                display: flex;
                justify-content: center;
                align-items: center;
                font-weight: bold;
                text-decoration: none;
                color: inherit;
                margin-top: auto;
                 svg{
                    width: 2rem;
                    height: 2rem;
                    margin-left: 2%;
                    opacity: 1;
                 }
             }
         }
         .link-button{
            color: #222222;
            background-color: #f0efe6;
            fill: #222222;
         }
         .link-button:hover{
            background-color: #55555560;
            color: #f0efe6;
            fill: #f0efe6;
         }
    }
    @media screen and (width < 1000px){
        .image{
            display: flex;
            flex-direction: column;
        }
    }
}