.CampaignContainer {
    display: grid;

    .ImgBox {
        display: grid;
        justify-content: center;
        align-items: center;
        width: 100%;

        background-color: #5371ff;

        &.Transparent {
            background-color: transparent;
        }

        .Img {
            max-width: 100%;
            /* height: 100%; */
            max-height: 400px;
            object-fit: cover;
        }
    }

    .ButtonBox {
        display: grid;
        justify-content: center;
        padding: 20px 20px;

        .CampaignButton {
            display: block;
            text-decoration: none;
            color: #fff;
            background-color: var(--SecondaryColor);
            padding: 10px 30px;
        }
    }
}