/*This is not part of the scss FILES*/
/*This is not rendered by npm sass*/

.title {
    color: #F0523F;
}

.outter {
    margin: 40px 50px;
    padding: 4px;
    border-radius: 5px;
}

.outter article {
    position: relative;
}

.outter article .join-button {
    position: absolute;
    bottom: -30px;
    left: 15%;
    text-decoration: none;
    font-weight: bold;
    font-size: 29px;
    padding: 10px 30px;
    border-radius: 5px;
    transition: all 0.5s ease;
    background-color: var(--btn-bg);
    color: var(--btn-text);
    border: 3px solid var(--btn-border);
}

.outter article .join-button:hover {
    background-color: white !important;
    color: var(--btn-hover-text);
}

@media (max-width: 992px) {
    .outter {
        margin: 40px 0px;
    }

    .outter article .join-button {
        bottom: -21px;
        left: 12%;
        font-size: 22px;
    }


}