
#treasureNavDiv {
    z-index: 30;
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
    /*align-items: center;*/

    position: absolute;
    left: 1.5em;
    bottom: 1.5em;

    background-color: #fde9d9;
    border: solid 3px #59482F;
    border-radius: 1em;

    padding: 1em;

    font-family: "AnimeAce", sans-serif;
    font-weight: bold;
}

#treasureMapNav {
    display: flex;
    flex-direction: column;
    justify-content: space-around;

    width: 350px;


    & a {
        color: #000;
        text-decoration: none;
        text-underline: none;
        transition: all 0.5s;
        padding: 1em;
        &:hover {
            transform: translateX(10px);
        }
    }
}

#treasureMap {
    background-color: transparent;
    cursor: pointer;
    width: fit-content;
}

#treasureMapClosed,
#treasureMapOpen {
    height: 80px;
}

#treasureMapClosed {
    display: block;
    transition: all 0.5s;
    &:hover {
        transform: scale(1.1);
    }
}

#treasureMapOpen {
    display: none;
    transition: all 0.5s;
    &:hover {
        transform: scale(1.1);
    }
}

.nav-icon {
    width: 50px;
    height: 50px;
    padding-right: 10px;
}

