

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 18, 23, 0.5);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-bg-color) ;
    padding: 20px;
    border: 1px solid #888;
    box-shadow: 0 5px 10px 10px rgba(154, 153, 153, 0.2);
    border-radius: 2rem;
    width: 80%;
    max-width: 600px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: orangered;
}

.alert-container {
    display: none;
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px;
    background: transparent;
    color: white;
    border-radius: 5px;
    box-shadow: 0 5px 10px 10px rgba(154, 153, 153, 0.2);
    z-index: 999;
}

.alert-container h1 {
    margin: 0;
    font-family: 'League Spartan', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2em;
    font-weight: 700;
    overflow: hidden;
    white-space: nowrap;
    animation: type 2s steps(40, end);
}

@keyframes type {
    from {
        width: 0;
    }
}