
/*
    Created on : Sep 23, 2023, 4:49:19 PM
    Author     : hassanzmn
*/

body {
    background-color: rgba(10, 14, 21, 1);
}

/* For devices with screen widths of 700px and larger */
@media screen and (min-width: 700px) {
    .background {
        background-image: url('/images/main/starry_background_large.webp');
    }
}

/* For devices with screen widths less than 700px */
@media screen and (max-width: 699px) {
    .background {
        background-image: url('/images/main/starry_background_small.webp');
    }
}

.background {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 90vh;
}

hr.custom {
    margin: 0;
    border: none;
    width: 60%;
    height: 1px;
    background-color: #333;
    background-image: linear-gradient(to right, #ccc, #333, #ccc);
}

.badge-mark {
    background-color: black;
    color: white;
    font-size: 30px;
    font-weight: 600;
    padding: 0.3em 0.65em 0em 0.65em;
    border-radius: 1em;
}
