* {
    font-family: 'Roboto', sans-serif;
}

body{
    background-color: #f8f8fc;
}

p{
    font-size: 17px;
}

.min-height-100{
    min-height: 100vh;
}

.custom-flex-fill{
    flex: 1;
}

/* ==================================================
    BACKGROUND
================================================== */
.bg-custom-dark-blue{
    background-color: #0c2663;
}

.bg-custom-cream{
    /* background-color: #EFC040; */
}

/* ==================================================
    BUTTON
================================================== */
.btn-custom-primary{
    background-color: #0D0E27;
}
.btn-custom-primary:hover{
    background-color: #1b1c51;
}

/* ==================================================
    BORDER
================================================== */

.custom-rounded-start{
    border-radius: 0 0.6rem 0.6rem 0 !important;
}
.custom-rounded-end{
    border-radius: 0.6rem 0 0 0.6rem !important;
}

@media screen and (max-width: 768px) {
    .custom-rounded-start{
        border-radius: 0.6rem !important;
    }
}