*{
    margin: 0;
    padding: 0;
}
.card{
    padding: 15px;
    width: 200px;
    background-color: black;
    text-align: center;
    margin-left: 15px;
    margin-top: 15px;

}
.card-box{
    width: 150px;
    height: 150px;
    background-color: #ff0404;
    border-radius: 30px;
    margin: 10px auto;
}
.card-text{
    color: #fff;
}
#duyme{
    padding: 5px 15px;
    margin-top: 45px;
    height: 30px;
    width: 120px;
    border: none;
    border-radius: 15px;
    background-color: red;
    color: #fff;
    font-size: 18px;
}
.card-text{
    padding-top: 15px;
}
.cards{
    display: flex;
    flex-wrap: wrap;
}

.modal {
    width: 400px;
    height: 400px;
    background-color: red;
    border: 10px solid #fff;
    border-radius: 20px;
    color:#fff;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: absolute;
    top: calc(50% - 200px);
    left: calc(50% - 200px);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
}

#layer {
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.8);
    z-index: 1;
    position: absolute;
    top: 0;
    left:0;
    display: none;
}