.alert-container-a, .alert-container-m{
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.733);
    top: 0;
    z-index: 10;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    display: none;
    opacity: 0;
    transition: all 1s;
}

.alert-box{
    width: 100%;
    max-width: 270px;
    height: fit-content;
    background-color: rgb(225, 106, 255);
    border-radius: 17px;
    border-bottom: 4px solid purple;
    box-shadow: 0px 0px 50px 3px rgba(107, 32, 107, 0.726);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all 0.3s;
    overflow: hidden;
}

.alert-link{
    font-family: 'Poppins', sans-serif;
    color: black;
    text-decoration: none;
    width: 100%;
    padding-block: 20px;
    text-align: center;
    font-size: 18px;
    transition: all 0.2s;
    font-weight: 500;
}



.alert-title{
    font-family: 'Poppins', sans-serif;
    color: white;
    font-weight: 600;
    font-size: 25px;
    text-decoration: underline;
    text-shadow: 0px 0px 13px rgba(255, 255, 255, 0.37);
}


.alert-link:hover{
    background-color: rgb(214, 65, 252);
}
