body {
    font-family: "Poppins", sans-serif;
    background-color: #faf8f7;
}

.offcanvas {
    transition: 1s;
}

a.nav-link {
    color: black;
}

.active a{
    color: black !important;
}

#main-content {
    width: 75%;
    margin-left: 25%;
}

img {
    max-width: 75%;
    height: auto;
}

#title {
    font-size: 2.5rem;
    font-weight: bold;
}

#date, #address {
    font-size: 2rem;
}

#main-content {
    background-image: url('../images/bg_5.png');
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.text-left {
    background-color: rgba(255, 255, 255, 0.6);
}

.bg-light {
    background-color: transparent !important;
}

.list-group-item.active {
    background-color: #dff3ff;
	border-color: cornflowerblue;
}

.btn-primary {
    --bs-btn-color: white;
    --bs-btn-bg: #BE0028;
    --bs-btn-border-color: white;
    --bs-btn-hover-color: white;
    --bs-btn-hover-bg: #BE0028;
    --bs-btn-hover-border-color: white;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #BE0028;
    --bs-btn-active-border-color: white;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: #0d6efd;
}

@media (min-width: 1024px) {
    #sidebar {
        height: 100vh;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 1030;
        width: 23%;
        background-color: #f8f9fa;
        border-right: 1px solid #ddd;
    }
    #main-content {
        margin-left: 23%!important;
    }
}

@media (max-width: 1023px) and (min-width: 768px) {
    #sidebar {
        height: 100vh;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 1030;
        width: 30%;
        background-color: #f8f9fa;
        border-right: 1px solid #ddd;
    }
    #main-content {
        margin-left: 30%!important;
    }
}


@media (min-width: 425px) {	
	#main-content {
		margin-left: 30%;
	}
}

@media (min-width: 375px) {	
	#main-content {
		margin-left: 0%;
	}
	
	#title {
		font-size: 2rem;
		font-weight: bold;
	}
	
	#date, #address {
		font-size: 1.5rem;
	}
	p{
		font-size: 1rem !important;
	}
}

@media (min-width: 320px) {	
	#main-content {
		margin-left: 0%;
	}
	#title {
		font-size: 2rem;
		font-weight: bold;
	}
	
	#date, #address {
		font-size: 1.5rem;
	}
	p{
		font-size: 14px;
	}
}

.dropdown-menu {
    position: static !important;
}