﻿.modal {
    position: fixed;
    z-index: 999999;
    top: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modalContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 130px;
    background-color: #fff;
    box-shadow: 8px 6px 4px black;
    border-radius: 2px;
}

.modalContent img {
    height: 80px;
    width: 120px;
}

.modalContent span {
    color: red;
    font-size: 18px;
    font-weight: bold;
}


