div.modal{
    width: 100%;
    height: 100vh;
    position: fixed;
    background: #00000088;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s;
}

div.modal .card{
    width: 600px;
    height: 400px;
    border-radius: 25px;
    box-shadow: 0 0 100px #00BFFF55 inset;
    background: radial-gradient( #1E293B, #0F172A);
    transform: scale(0);
    z-index: 2500;
}
div.modal .card .top{
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

div.modal .card .top i{
    position: relative;
    top: auto;
}

div.modal .card .top h2{
    margin-left: 25px;
    font-size: 32px;
}

div.modal .card p{
    font-size: 24px;
    padding: 50px;
    margin-bottom: 25px;
    text-align: center;
}

div.modal .card .kapat{
    display: block;
    margin: auto;
    padding: 15px 30px;
    background-color: #1E293B;
    border: 1px solid #0F172A;
    text-decoration: none;
    border-radius: 10px;
    font-size: 24px;
    cursor: pointer;
}

div.modal .card .kapat:hover{
    background-color: #445775;
    box-shadow: 0 0 25px #0F172A;
}