button {
    border: none;
    outline: none;
    padding: 10px 20px;
    cursor: pointer;
}

button:hover {
}

.navbar-content {
    display: flex;
    justify-content: center;
    text-align: center;
}

.navbar-item-row {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 10px;
}

.navbar-item-row div {
    text-align: center;
}

.navbar-item-row button {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    background-color: #910808;
}

.navbar-item-row button:hover {
    background-color: #9c880d;
    color: #000000;
}

.dropbtn {
    padding: 10px 20px;
    /*padding: 16px;*/
    border: none;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    /*min-width: 160px;*/
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content button {
    /*padding: 12px 16px;*/
    text-decoration: none;
    display: block;
}

.dropdown-content button:hover {
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
}