.modal-background{
    display: none;
    position: fixed;
    background: rgba(43, 41, 45, 0.6);
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1;   
}
.modal{
    background: white;
    box-sizing: border-box;
    border-radius: 8px;
    max-width: 550px;
    padding: 20px;
    text-align: center;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.modal-flex{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-bottom: 20px;

}
.close{
    color: #3040C4;
    
    font-size: 40px;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 10px;   
}
.modal-title{
    font-size: 50px;
    font-weight: bold;
}
@media (max-width: 800px){
    .modal{
        max-width: 500px;
    }
}
@media (max-width: 550px){
    .modal{
        max-width: 400px;
    }
}
@media (max-width: 480px){
    .modal{
        max-width: 350px
    }
    .modal-content > div > img{
        max-width: 100%;
    }
}
@media (max-width: 360px){
    .modal{
        max-width: 290px
    }
}