:root{
    --primary-color: #000;
    --secondary-color: #F2F5F6;
}

.background-image{
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: multiply;
}

/* Start Button Style */

.btn{
    font-weight: bold;
    padding: 13px 25px;
    min-width: fit-content;
    cursor: pointer;
    border-radius: 8px;
    transition: all ease-in-out 250ms;

}
.btn:disabled{
    cursor: not-allowed;
    opacity: 0.5;
}
.btn:not(:disabled):hover{
    opacity: 0.7;
}

.btn-primary{
    color: white;
    background-color: var(--primary-color);
}

/* End Button Style */
