
.container{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}
.container h1{
    font-size: 3rem;
    background: linear-gradient(90deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
    
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.scroll-animate.animate-up {
    opacity: 1;
    transform: translateY(0);
}
.circle{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.house{
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
    width: 150px;
    height: 150px;
    /*border: 1px solid rgb(34, 32, 32);*/
    border-radius: 20px;
    display:flex;
    justify-content: center;
    align-items: center;
    /*background: rgb(229, 255, 246);*/
    /*box-shadow: */
    /*    0 20px 30px rgba(0, 0, 0, 0.4),*/
    /*    0 40px 60px rgba(0, 0, 0, 0.3);*/

}
.house.animate-up{
    opacity: 1;
    transform: translateY(0);
}
.house a{
    display:flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 5px;
    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 200px;
}
.house a img{
    width: 100%;
    height: 100%;
}
.house a span{
    color: black;
}
.zodiac-icon{
    width: 100px;
    height: 100px;
    border-radius: 100px;
    background-color: #8B5CF6;
    display: flex;
    justify-content: center;
    align-items: center;

}

