.navspace {
    background-color: cadetblue;
    max-width: 100%;
    text-align: center;
}

.navspace__navbar {
    padding: 5px;
    display: flex;
    list-style: none;
    justify-content: center;
    margin: 0px;
}

.navspace__item {
    background-color: lavender;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0px 1px 81px -10px rgba(66, 68, 90, 1);
    text-decoration-line: none;
    margin: 6px;
    color: black;
    display: inline-block;
}

.navspace__item:hover {
    background-color: rgb(247, 247, 247);
}

.navspace__button {
    cursor: pointer;
}