.navbar {
    background-color: #d1282e;
    border-radius: 10px;
}

.navbar-item{
    color: #fff;
    font-weight: bolder;
}
a.navbar-item:hover{
    color: red;
    border-radius: 10px;
    font-weight: bolder;
}

.navbar-item.is-hoverable:hover .navbar-dropdown{
    background-color: #d1282e;

}
.navbar-dropdown a.navbar-item:hover{
    color: #d1282e ;
}

.card:hover{
    border: 3px solid #d1282e;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.button{
    border-radius: 0px;
}
.button.is-primary{
    background-color: #00ab8e;
}
.button.is-primary:hover{
    background-color: #d1282e;
}
