@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
html{
    font-size: 18px;
}
body{
    background-color: rgb(22, 8, 31);
    color: white;
    font-family: 'Montserrat', sans-serif;
}

a{
    text-decoration: none;
    color: white;
}
a:hover{
    text-decoration: underline;
}

.container{
    width: 100%;
    height: 100vh;

}
.slaves_con{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

}
.slave{
    padding: 15px;
    border: 5px solid yellow;
    border-radius: 16px;
    width:200px;
    transition: all 0.4s ease-in-out;
    /* flex:1; */


}

.slave:hover{
    width: 400px;


}
.slave_name{
    font-size: 1.5rem;
}

.slave_img {
    width: 100%;
  
}
.slave_img img{
    width: 100%;
    border-radius: 15px;
    aspect-ratio: 1/1;

}

.slave_price{
    color: rgb(13, 230, 13);
}
.slave_advantages{
    background-color: rgba(172, 255, 47, 0.527);
}

.slave_disadvantages{
    background-color: rgba(163, 46, 46, 0.726);
}

.slave_info{
    display: none;

    /* transform: scaleY(0.1); */
    opacity: 0.5;
    transition: all 3s;
}

.slave:hover .slave_info{
    display: block;
    /* transform: scaleY(1.5); */
    opacity: 1;
    /* width: 500px; */
}

.add_new_slave{
    width: 50%;
    margin: auto;
    text-align: center;

}
input{
    width: 100%;
    padding: 12px;
    border-radius: 15px;
    outline: none;
}
.pop_up{
    width: 100vw;
    height: 100vh;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top:0;
    left: 0;
    /* background-color: blue; */
}
.slave_share{
    z-index: 5;
    /* position: fixed; */
    min-width: 50%;
    max-width: 60%;
    margin: 20% 0;
    background-color: rgb(47, 3, 77);
    align-items: center;
    text-align: center;
    border-radius: 35px;
    padding: 25px;
}

.shared-slave-content{
    width:100%;
    display: flex;
    flex-wrap: wrap;
}
.shared-slave-content div{
    max-width: 50%;
    /* flex:1; */
}
.shared_info{
    font-size: 3em;
    /* flex: 5; */
}
.share_img_con{
    
}
.slave_share img{
    width: 100%;
    border-radius: 25px;
    aspect-ratio: 1/1;
}

.selected_slave{
    border: 5px solid rgb(255, 0, 157);
}

.patreon{
    position: fixed;
    bottom: 0;
    right: 5px;
    z-index: 997;
    cursor: pointer;
    width: 95px;
}
.patreon img{
    width: 100%;
}

@media (max-width: 600px){
    .slave_share{
        width: 90%;
        font-size: 0.7em;
    }
    .shared-slave-content div{
        max-width: 100%;
        /* flex:1; */
    }
}

