html {
    max-width: 100vw !important;
    overflow-x: hidden !important;
}

#logo {
    width: 10%;
    transition: 0.5s;
}

#logo-title {
    font-size: 25px;
    transform: translateY(2px);
    transition: 0.5s;
}

.navbar-brand:hover img, span{
    opacity: 0.8;
    transition: 0.5s;
}


.message-error {
    width: 100%;
    background: darkred;
    color: white;
    padding: 8px;
    border-radius: 2px;
}

.message-info {
    width: 100%;
    background: cornflowerblue;
    color: white;
    padding: 8px;
    border-radius: 2px;
}

.message-success {
    width: 100%;
    background: darkcyan;
    color: white;
    padding: 8px;
    border-radius: 2px;
}

.new-article {
    color: white;
    background-color: #4A1354;
    border-radius: 3px;
    font-size: 15px;
    padding-left: 5px !important;
    padding-right: 5px !important;
    padding-bottom: 3px !important;
    padding-top: 1px !important;
    transform: translateY(-20px);
}

.highlight-text {
    background: #4A1354;
    padding: 4px;
    font-size: 9px;
    color: white;
    border-radius: 6px;
    transform: translate(2px,-2px);
    transition: 0.5s;
}

.highlight-text:hover{
    opacity: .5;
    transition: 0.5s;
}
