html,
.my-card {
    border-radius: 50%;
}

@media (max-width: 991.98px) {
    .offcanvas-collapse {
        position: fixed;
        top: 56px;
        /* Height of navbar */
        bottom: 0;
        right: 100%;
        width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        overflow-y: auto;
        visibility: hidden;
        background-color: #343a40;
        transition-timing-function: ease-in-out;
        transition-duration: .3s;
        transition-property: right, visibility;
    }
    .offcanvas-collapse.open {
        right: 0;
        visibility: visible;
    }
}

.nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
}

.nav-scroller .nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: -1px;
    overflow-x: auto;
    color: rgba(255, 255, 255, .75);
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.nav-underline .nav-link {
    padding-top: .75rem;
    padding-bottom: .75rem;
    font-size: .875rem;
    color: #6c757d;
}

.nav-underline .nav-link:hover {
    color: #007bff;
}

.nav-underline .active {
    font-weight: 500;
    color: #343a40;
}

.text-white-50 {
    color: rgba(255, 255, 255, .5);
}

.bg-purple {
    background-color: #6f42c1;
}

.bg-blue {
    background-color: blue;
    color: white;
    border-bottom: white solid;
}

.bg-yellow {
    background-color: #ffc107;
    color: black;
    border-bottom: black solid;
}

.bg-yellow-reverse {
    background-color: white;
    color: black;
    border-bottom: black solid;
    border-bottom: black solid;
}

.bg-blue-reverse {
    background-color: white;
    color: blue;
    border-bottom: blue solid;
}

.bg-blue-reverse:hover {
    background-color: rgb(170, 163, 255);
}

.lh-100 {
    line-height: 1;
}

.lh-125 {
    line-height: 1.25;
}

.lh-150 {
    line-height: 1.5;
}

.my-prize-title {
    border: 3px solid #343a40;
    color: white;
    background-color: #007bff;
    padding-top: 14px;
    padding-bottom: 14px;
}

.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
}

body {
    background-color: #9e989b;
    font-family: 'bahij';
}

a.dropdown-item {
    padding-bottom: 14px;
    padding-top: 14px;
    font-siz: 22px;
}

a.dropdown-item:hover {
    color: white;
    background: black;
}

.starter-template {
    padding: 3rem 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}

.countdown {
    text-align: center;
}

.countdown .timeel {
    display: inline-block;
    padding: 4px;
    background: #f30000;
    margin: 0;
    color: white;
    min-width: 2.6rem;
    border-radius: 10px 0 0 10px;
    font-size: 22px;
}

.countdown span[class*="timeRef"] {
    border-radius: 0 10px 10px 0;
    background-color: #ffc10747;
    color: black;
}

.loader {
    border-top: 10px solid blue;
    border-right: 10px solid green;
    border-bottom: 10px solid red;
    border-left: 10px solid pink;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
}

.card:hover {
    box-shadow: 5px 10px 5px 5px lightgrey;
}


/* Safari */

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.card-text {
    font-size: 120px;
    color: white;
    padding: 0%;
}

.card-text2 {
    font-size: 26px;
    color: white;
}

.card-img-top {
    width: 100%;
    height: 15vw;
    object-fit: cover;
}

.animate-me {
    animation: 1s infinite bgcolorchange;
}

@keyframes bgcolorchange {
    0% {
        color: red;
    }
    50% {
        background: white;
    }
    100% {
        background-color: red;
    }
}

@-webkit-keyframes bgcolorchange {
    50% {
        background: red;
    }
    50% {
        background: white;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    /* Margin bottom by footer height */
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    /* Set the fixed height of the footer here */
    line-height: 60px;
    /* Vertically center the text there */
    background-color: #f5f5f5;
}