.error {
    display: none;
    height: 40%;
    width: 25%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: black;
    border: 2px rgb(192, 0, 0) solid;
    border-radius: 5px;
    flex-direction: column;
    align-items: center;
    gap: 10%;
}

.error img {
    height: 50%;
    margin-top: 5%;
}

.error button {
    background-color: black;
    border: 2px rgb(192, 0, 0) solid;
    border-radius: 2px;
    color: red;
    width: 75px;
    height: 35px;
    font-size: 20px;
}

.error button:hover {
    background-color: red;
    color: black;
    cursor: pointer;
}