:root {
	--moniz-primary: #db2d1d;
	--moniz-primary-rgb: 219, 45, 29;
}


.button {
        background-color: #db2d1d;
        -webkit-border-radius: 60px;
        border-radius: 60px;
        border: none;
        color: #eeeeee;
        cursor: pointer;
        display: inline-block;
        font-family: sans-serif;
        font-size: 20px;
        padding: 5px 15px;
        text-align: center;
        text-decoration: none;
      }
      @keyframes glowing {
        0% {
          background-color: #db2d1d;
          box-shadow: 0 0 5px #db2d1d;
        }
        50% {
          background-color: #03a65b;
          box-shadow: 0 0 20px #03a65b;
        }
        100% {
          background-color: #db2d1d;
          box-shadow: 0 0 5px #db2d1d;
        }
      }
      .button {
        animation: glowing 1300ms infinite;
      }
      
.main-header {
    
    background-color: #494443 !important;
    box-shadow: rgb(0 0 0 / 40%) 0pt 7pt 10pt 5px;
    
}

.stricky-header.main-menu {
    padding: 0 60px;
    background-color: #494443 !important;
}

.scroll-to-top {
    
    background: #db2d1d !important;
}