body {
    background-color: #000;
    color: white;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.navbar-brand {
    font-weight: bold;
    font-size: 3rem;
    font-family: 'Jaro', sans-serif;
}

.navbar-logo {
    height: 4em;
    vertical-align: middle;
    margin-left: 0.1em;
}


.jaro-title {
    font-family: 'Jaro', sans-serif;
    font-weight: 400;
    font-style: normal;
}

h2 {
    font-weight: bold;
    text-transform: uppercase;
}

.carousel-inner {
    max-height: 850px;
    overflow: hidden;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.carousel-caption p{
    font-size: 2rem;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.7);
    -webkit-text-stroke: 1px #000;
    font-weight: bold;
}

.carousel-caption h3{
    font-family: 'Jaro', sans-serif;
    font-size: 4rem;
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.7);
}

.carousel-caption-first {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem; 
    color: white; 
    font-weight: bold; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); 
    z-index: 10; 
}

.carousel-caption-first h3{
    font-family: 'Jaro', sans-serif;
    font-size: 4rem;
    display: inline-flex;
    align-items: center; 
    gap: 0.5em;
}

.carousel-caption-first img {
    height: 3em; 
    vertical-align: middle; 
}

.card {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 3px;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}



.btn-primary {
    background-color: #39FF14;
    border: none;
}

.btn-primary:hover {
    background-color: #32CD32
}

