.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.boxshell {
    background: linear-gradient(to bottom right,rgba(70,0,100) 10%, black 100%);
    border-color: purple;
    padding: 20px;
    border-radius: 10px;
    font-size: 18px;
    max-width: fit-content;
    text-align: center;
}
.boxshell:hover {
    box-shadow: 0 0 10px purple;
}
.cancelbutton{
    justify-content: left;
    text-align: left;
    border: none;
    width: fit-content;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
}
.cancelbutton:hover {
    background-color: rgba(255, 192, 203, 0.2);
}