.subscribe_container {
    margin-top: 20px;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro_container {
    margin-top: 10px;
    margin-bottom: 10px;
}

.carousel_img {
    width: 500px;
    height: 550px;
    object-fit: contain;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

label {
    margin-bottom: 20px;
    font-size: 16px;
}

.btn {
    margin-top: 20px;
    font-size: 14px;
    background-color: burlywood;
    border-color: transparent;
}

/* Mobile Styling */

@media only screen and (max-width: 600px) {
    .carousel_img {
        width: 300px;
        height: 300px;
        object-fit: contain;
    }
}