html {
    scroll-behavior: smooth;
}

body {
    font-family: "titillium", Arial, sans-serif !important;
    background-image: url("/images/background.webp");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.row {
    padding: 0 !important;
}

a {
    text-decoration: none;
    color: #5193f5
}

a.hover{
    text-decoration: underline;
    color: #5193f5;
}
.to-top {
    width: auto;
    height: 38px;
    padding: 10px 10px 0 10px;
    position: fixed;
    bottom: 0px;
    right: 40px;
    z-index: 1234;
    background-color: #00131e;
    border: 1px solid #FFF;
    color: #FFF;
    transition-property: background-color;
    transition-duration: 0.3s;
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom: 0px;
   }
   .to-top:hover {
    background-color: #001f31;
    color: #FFF;
    border-color: #FFF;
    text-decoration: none;
}