.alert-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}


.alert-content {
    background-color: white;
    padding: 30px;
    margin: 20% auto;
    width: 600px;
    height: 700px;

    border-radius: 30px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);

    position: relative;

    font-family: system-ui;
}


.alert-cross-close {
    position: absolute;
    top: 10px;
    right: 20px;

    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
}



.alert-h {
    font-size: 30px;
    font-weight: 800;

    padding-bottom: 20px;
}


.alert-p {
    font-size: 25px;
    font-weight: 500;
}


.alert-buttons {
    position: flex;
    justify-content: space-evenly;
}


.alert-portrait {
    padding: 30px 50px 100px 50px;
}


