/* #app {
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    color: #2c3e50;
    margin-top: 60px;
} */

body {
    margin: 0;
    padding: 0;
}

#menu {
    position: absolute;
    display: table;
    width: 25%;
    height: 100%;
    /* height: 100%; */
    text-align: center;
    background-color: white;
    background-image: url("assets/jungle_texture-full.jpg");
    background-repeat: repeat;
    background-size: 500px;
    padding: 2px 2px 2px 2px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    /* margin: 5px; */
    /* border-radius: 5px; */
    font-family: 'Bangers', sans-serif;
    /* top: 380px; */
    /* z-index: -1; */
    overflow-y: auto;
}

.animalButton {
    background-color: #BDBEAB;
    width: 70px;
    aspect-ratio: 1 /1;
    border: none;
    color: white;
    padding: 3px 3px;
    text-align: center;
    text-decoration: none;
    font-size: 40px;
    margin: 8px 8px;
    cursor: pointer;
    border-radius: 10px;
    /* display: inline-block;  displays buttons horizontally*/
    display: table-row;
    font-family: 'Poppins', sans-serif;
}

.animalButton:hover {
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.5), 0 17px 50px 0 rgba(0, 0, 0, 0.4);
    background-color: #949688;
}

.animalButton:active {
    background-color: #949688;
    transform: translateY(4px);
}

.submitButton {
    display: block;
    background-color: #FFD65B;
    font-family: 'Bangers', sans-serif;
    text-align: center;
    width: 80%;
    border: none;
    color: #3d2b1f;
    padding: 10px 10px;
    text-align: center;
    text-decoration: none;
    font-size: 30px;
    margin: auto;
    cursor: pointer;
    border-radius: 10px;
}

.submitButton:hover {
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.5), 0 17px 50px 0 rgba(0, 0, 0, 0.4);
    background-color: #faca39;
}

.submitButton:active {
    background-color: #faca39;
    /* box-shadow: 0 5px #666; */
    transform: translateY(4px);
}

#map {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 75%;
    z-index: -5;
}

.mapboxgl-popup {
    padding-bottom: 5px;
}

.mapboxgl-popup-close-button {
    display: none;
}

.mapboxgl-popup-content {
    line-height: .09;
    padding: 0;
    width: 250px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.mapboxgl-popup-content-wrapper {
    padding: 1%;
    /* box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
}

.mapboxgl-popup-content h3 {
    font: 400 15px/22px 'Bangers', 'Helvetica Neue', Sans-serif;
    font-size: 30px;
    background: rgb(61, 59, 59);
    text-align: center;
    color: #fff;
    margin: 0;
    display: block;
    padding: 15px;
    font-weight: 700;
    margin-top: -5px;
}

.mapboxgl-popup-content h4 {
    font: 400 15px/22px 'Poppins', 'Helvetica Neue', Sans-serif;
    margin: 0;
    display: block;
    padding: 10px 3px 10px 10px;
    font-weight: 400;
}

.mapboxgl-container {
    cursor: pointer;
}

.mapboxgl-popup-anchor-top>.mapboxgl-popup-content {
    margin-top: 3px;
}

.mapboxgl-popup-anchor-top>.mapboxgl-popup-tip {
    border-bottom-color: rgb(61, 59, 59);
}