* {
    font-family: "Shabnam FD";
    font-size: 14px;

}

#d_large {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 99999;

}

#d_large  #d_small {
    width: 350px;
    height: 130px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    /*transform: translate(-50%, -50%);*/
    background: white;
    border-radius: 8px;
    box-shadow: 1px 1px 10px 1px #eee;
    padding: 10px;
    animation: ani1 500ms;

}

#d_large  #d_soal {
    position: relative;
    text-align: center;
    top: 20px;
    color: black;
}

#d_large  #d_btns {
    position: absolute;
    bottom: 30px;
    left: 30%;
    transform: translateX(-20%);
}

#d_large  #d_btns button {
    width: 120px;
    height: 35px;
    cursor: pointer;
    border-radius: 5px;
}

#d_large  #d_btns button:nth-child(2) {
    background-color: #daf8ef;
    color: green;
    border: 1px solid green;
}

#d_large  #d_btns button:nth-child(2):hover {
    background-color: #94ffdb;
}

#d_large  #d_btns button:nth-child(1) {
    background-color: #ffe4e4;
    color: crimson;
    border: 1px solid crimson;
}

#d_large  #d_btns button:nth-child(1):hover {
    background-color: #ffc7c7;
}

@keyframes ani1 {
    0% {
        transform: scale(0.8);
        /*top: -200px;*/
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        /*top: 50%;*/
    }
}

#d_small2 {
    width: 250px;
    position: absolute;
    background: #d3fcec;
    border-radius: 8px;
    box-shadow: 1px 1px 10px 1px #eee;
    padding: 20px 15px;
    color: #03ad71;
    right: 10px;
    text-align: right;
    animation: ani2 500ms;
    overflow: hidden;
    z-index: 99999;
}
#d_small3 {
    width: 250px;
    position: absolute;
    background: #ffc7c7;
    border-radius: 8px;
    box-shadow: 1px 1px 10px 1px #eee;
    padding: 20px 15px;
    color: #ff0000;
    right: 10px;
    text-align: right;
    animation: ani2 500ms ease;
    overflow: hidden;
    z-index: 99999;
}

@keyframes ani2 {
    0% {

        top: -200px;
    }

    100% {
        top: 0;
    }
}

#d_p1 {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 5px;
    background-color: #03ad71;
    border-radius: 10px;
}
#d_p2 {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 5px;
    background-color: #ff0000;
    border-radius: 10px;
}
