*{
    font-family: 'Poppins', sans-serif;
    color: #313131 !important;
}
:root{
    --bg-1color : #044ea1;
    --bg-2color : #e52d37;
}
body{
    background-color: var(--bs-secondary-bg);
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: #64cbf3;
    font-family: "Amazon Ember", sans-serif;
    display: flex
;
    justify-content: center;
    align-items: center;
    
}
    .preloading
    {
    position: fixed;
    z-index: 999;
    min-width: 100%;
    height: 100%;
    background-color: #000000cf;
    top: 0;
}

.theme-btn{
    color: #fff !important;
    background-color: var(--bg-1color);
}
.theme-btn:hover, .theme-btn:focus{
    color: #fff !important;
    background-color: #0260b9;
}
.back-btn{
    color: #fff !important;
    background-color: var(--bg-2color);
}
.back-btn:hover, .back-btn:focus{
    color: #fff !important;
    background-color: #e52d37;
}
h4{font-size: 18px; font-weight: 600; margin-bottom: 0;}
h5{font-size: 14px; font-weight: 600; margin-bottom: 0; color: white!important;}
h6{font-size: 12px; font-weight: 500; margin-bottom: 0;}
p{font-size: 14px; margin-bottom: 0;}
.main-container{
    position: relative;
    max-width: 540px;
    width: 100%;
    min-height: 600px;
    padding-bottom: 70px;
    margin: auto;
    /*background-color: white;*/
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    /*background-image: radial-gradient(circle, #64cbf3, #4357a6);*/
    /*background-image: linear-gradient(120deg, #f6d365 0%, #fda085 100%);*/
    background: linear-gradient(135deg, #fcc5e4, #fda34b, #ff7882, #c8699e, #7046aa, #0c1db8);
    background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.icon-container{
    max-width: 540px;
    width: 100%;
    margin: auto;
}
@media only screen and (max-width: 960px) {
    .main-container {
        max-width: 960px;
        border-radius: 0px;
        min-height: 100vh;
    }
    .header, .footer{
        border-radius: 0px !important;
    }
  }
.body{
    padding: 0 1.8em;
}
.grid-icon{
    padding: 1em;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    background: white;
}
a:has(> .grid-icon){
    text-decoration: none;
    color: #313131;
    cursor: pointer;
}
.header{
   /* background-color: var(--bg-2color);*/
   background-color: white;
    border-radius: 10px 10px 0px 0px;
    padding: 5px 10px;
   /* border-bottom: 2px solid #960000;*/
   border-bottom: 2px solid #E0E0E0;
   display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer{
    width: 100%;
    position: absolute;
    border-top: 2px solid var(--bs-secondary-bg);
    bottom: 0;
    padding: 1em;
    background-color: var(--bs-tertiary-bg);
    border-radius: 0px 0px 10px 10px;
}
.gallery-img {
    width: 170px;
    height: 170px;
    object-fit: cover;
}
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}