.backdrop {
    position: fixed;
    top: 0;
    z-index: 999999;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    display: none;
    cursor: pointer;
}

.bannerContainer {
    width: 600px;
    padding: 20px;
    position: relative;
    background-color: white;
    border-radius: 15px;
    cursor: default;
}

.bannerInside {
}

.closeIcon {
    font-size: 16px;
    position: absolute;
    top: 0px;
    right: 15px;
    font-weight: bolder;
    cursor: pointer;
}

.appHeading {
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 1px;
    word-spacing: 4px;
    margin-top: 5px;
    color: #dedb4e;
}

.imgContainer {
    width: 200px;
    margin: 20px auto;
}

.img {
    width: 100%;
}
.anchor {
    text-align: center;
    color: black;
}

a.anchor:hover {
    color: #dedb4e;
}

@media screen and (max-width: 700px) {
    .closeIcon {
        font-size: 22px;
    }

    .appHeading {
        font-size: 20px;
        line-height: 30px;
        word-spacing: 4px;
    }
}
