.main-container{
    .top-prompt{
        text-align: center;
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 30px;
    }
    .faith-selector-wrapper{
        padding:1% 2%;
        display: flex;
        justify-content: space-between;
        margin-top: 2%;
        .faith-selector{
            margin-right: 10px;
            width:fit-content;
            cursor:pointer;
            background-color: white;
            border: 1px solid #cfcdcd;
            border-radius: 50%;
            padding:3%;
            box-shadow: -2px 13px 10px -8px rgba(77, 77, 77, 0.75);
            .faith-selector-inner{
                text-align:center;
                .faith-selector-title{
                    font-size: 1.5rem;
                    font-weight: bold;
                    margin-bottom: 10px;
                }

                .faith-selector-icon{
                    img{
                        width: 100px;
                        height: 100px;
                    }
                }
            }
        }
        .faith-selector:hover{
            background-color: #f3f3f3;
            padding:4%;
            border-color:gold;
            box-shadow:0px 0px 5px 1px gold;
            .faith-selector-title{
                font-size:2rem;
                color:rgb(248, 188, 34)
            }
        }

        @media screen and (min-height:1300px) and (orientation:portrait){
            margin-top:30%;
        }

        @media screen and (min-width:900px) and (orientation:landscape){
            margin-top:15%;
        }

        @media screen and (min-width:1200px) and (orientation:landscape){
            margin-top:10%;
        }

        @media screen and (max-width: 1000px){
            flex-direction: column;
            margin-top:0px;
            .faith-selector{
                width:100%;
                border-radius:10px;
                margin-bottom: 10px;
            }   
        }

        .faith-selector-button{
            .p-button{
                width: 200px;
            }
        }
    }
}

