body {
    background-color: #004643;
    color: black; /* Set text color to black */
}

.jumbotron {
    position: relative;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Update align-items to flex-start */
    background-color: #abd1c6;
    padding: 20px 20px 10px;
    border-radius: 5px;
    font-family: 'Heebo', sans-serif;
}

.jumbotron h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.jumbotron p:first-of-type {
    font-size: 30px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    text-align: left;
    align-self: flex-start;
}

.jumbotron p:nth-of-type(2) {
    font-size: 22px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    text-align: right;
    align-self: flex-end; /* Update align-self to flex-end */
}

h1, h2 {
    font-family: 'Heebo', sans-serif;
}

/* Font styles for paragraphs */
p {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 22px;
}


.sidebar {
   /* display: none;*/
}
@media (min-width: 768px) {
    .sidebar {
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        z-index: 1000;
        display: block;
        padding: 20px;
        overflow-x: hidden;
        overflow-y: hidden;
        background-color: #f5f5f5;
        border-right: 1px solid #eee;
    }
}

.main {
    padding: 20px;

    padding-bottom: 500px;
}
@media (min-width: 768px) {
    .main {
        padding-right: 40px;
        padding-left: 40px;
    }
}
.main .page-header {
    margin-top: 0;
}

.breakpoint-current {
    left: 0;
    margin-top: -10px;
    position: fixed;
   /* top: 33.3333%; */
    width: 3px;
    height: 3px;
    background: red;;
}

section {
    padding: 5px 10px 10px 10px;
    border-radius: 10px;
}

.image-container-1 {
    text-align: center;
}

.image-container-1 .zoom-image {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.image-container-1 .zoom-image:hover {
    transform: scale(1.3); /* Increase the scale value for more zoom effect */
}

.image-container-2 {
    text-align: center;
}

.image-container-2 .zoom-image {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}
.image-container-2 .zoom-image:hover {
    transform: scale(1.1); /* Increase the scale value for more zoom effect */
}

.image-container-3 {
        text-align: center;
}

.map-button {
    background-color: #f9bc60;
    border: 1px solid #f9bc60;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.map-button:hover {
    background-color: #e16162;
    border-color: #e16162;
    box-shadow: 0 0 50px #e16162, 0 0 25px #e16162, 0 0 150px #e16162, 0 0 200px #e16162; /* Increase glow effect on hover */
}

.api-button {
    background-color: #f9bc60;
    border: 1px solid #f9bc60;
    transition: background-color 0.3s ease;
    border-radius: 5px;
}

.api-button:hover {
    background-color: #e16162;
    border-color: #e16162;
    box-shadow: 0 0 50px #e16162, 0 0 25px #e16162, 0 0 150px #e16162, 0 0 200px #e16162; /* Increase glow effect on hover */
}

.viewing {
    background: #eff0f3;
    border: 5px solid #f9bc60; 
    /* animation: pulse 0.75s infinite alternate; Add border animation */
}

/* @keyframes pulse {
    0% {
        border-width: 2px;
    }
    100% {
        border-width: 4px;
    }
} */

.audio-button {
    background-color: #f9bc60;
    border: 1px solid #f9bc60;
    transition: background-color 0.3s ease;
    border-radius: 5px;
}

.audio-button:hover {
    background-color: #e16162;
    border-color: #e16162;
    box-shadow: 0 0 50px #e16162, 0 0 25px #e16162, 0 0 150px #e16162, 0 0 200px #e16162; /* Increase glow effect on hover */
}