@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');
/*
font-family: 'Dancing Script', cursive;
*/

*{
    padding:0;
    margin:0;
}
html,body{
    height:100%;
    width: 100%;
}
.main-container{
    height:100%;
    background-color:#B33F40;
    
}
.container-image{
    display: flex;
    align-items:center;
    justify-content:center;
    height: 65vh;
    width:100%;
    overflow:hidden;
}
.image{
    
    margin-left: 33rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction:column;
    justify-content:center;
    width: 250px;
    height: 250px;
    background-image: url(gan.jpg);
    background-size: cover;
    transition: ease-in-out 0.5s;
    z-index: 2;
}
.image::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    margin:auto;
    background:inherit;
    background-position: bottom;
    filter:blur(40px) saturate(0%);
    transform: scaleX(0.4);
    transition:ease-in-out 0.5s;
    border-radius: 120px;
    transform-origin: right;
    opacity: 0;
    z-index: -1
}
.image:hover{
    cursor: pointer;
    border-radius: 0;
    background-image: url(gan.jpg);
    box-shadow: 5px 6px 1px black;
}
#text-main{
    font-family: 'Condiment',cursive;

}
svg text{
    letter-spacing:10px;
    stroke:#FDFBF9;
    font-size: 75px;
    stroke-width: 2.5;
    animation:titleAnime 5s infinite alternate;

}
@keyframes titleAnime{
    0%{
        stroke-dasharray: 0 50%;
        stroke-dashoffset: 20%;
        fill:#00BFFF;

    }
    100%{
        stroke-dasharray: 50% 0;
        stroke-dashoffset: -20%;
        fill:#00BFFF;
        
    }
}
.mantra{
    text-align: center;
    font-family: 'Berkshire Swash',cursive;
}