body {
    font-family: Oswald, Arial, sans-serif;
}

header h1 {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.nav-link {
    color: #000;
    transition: color 0.3s;
    text-decoration: none;
    margin-right: 15px;
}

.nav-link:hover {
    color: #007bff;
}

header a {
    text-decoration: none;
    color: #000;
}

header a:hover {
    color: #007bff;
}

header i {
    font-size: 1.2rem;
}

header .d-flex.justify-content-between {
    align-items: center;
}

header .d-flex.align-items-center {
    align-items: center;
}

.projects h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #007bff; /* Adjust this to match the desired blue color */
}

.projects .lead {
    font-size: 1.25rem;
    font-weight: 600;
}

.projects .text-muted {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.projects .btn-outline-primary {
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
}


.carousel-item {
    height: 32em; /* Set the height as desired */
    background-color:black;
    position: relative;
}  

.overlay-image{
    position: absolute;
    bottom: 0;
    left:0;
    right: 0;
    top: 0;
    background-position: center;
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Prevent the image from repeating */
}





