*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.navbar{
    background-color: #136334;
}
.navbar-brand{
    color: white !important;
    font-weight: 700;
    font-size: 24px !important;
}
.nav-links{
    gap: 30px;
}
.nav-links a{
    text-decoration: none;
    color: white;
    font-weight: 500;
}
.nav-links a:hover{
    text-decoration: underline;
    color: whitesmoke;
}
.row{
    padding: 40px 10px 20px 10px;
    
}
.banner{
    border: 1px solid #136334;
    border-radius: 20px;
    color: white;
    background-image: linear-gradient(to right,#136334,#136334);
}
.card{
    height: 100px;
    border: 1px solid #136334 !important;
    background-color: #13633465 !important;
}

.card-body{
    text-align: center;
}
.card-body h5{
    font-weight: 700;
}
.content-content{
    margin: 4em;
    padding: 2em;
    background-color: #e2e2e28f;
    border-radius: 20px;
}

.foot{
    color: white !important;
    background-color: #000000 !important;
    border-radius: 0px !important;
    border: none !important;
}
.foot a{
    color: white;
}
/* From Uiverse.io by cssbuttons-io */ 
button {
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    transition: filter 250ms;
    user-select: none;
    touch-action: manipulation;
   }
   
   .shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: hsl(0deg 0% 0% / 0.25);
    will-change: transform;
    transform: translateY(2px);
    transition: transform
       600ms
       cubic-bezier(.3, .7, .4, 1);
   }
   
   .edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(
       to left,
       #136334 0%,
       #136334 8%,
       #13633492%,
       #136334 100%
     );
   }
   
   .front {
    display: block;
    position: relative;
    padding: 12px 27px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #000000;
    background: #ffffff;
    will-change: transform;
    transform: translateY(-4px);
    transition: transform
       600ms
       cubic-bezier(.3, .7, .4, 1);
   }
   
   button:hover {
    filter: brightness(110%);
   }
   
   button:hover .front {
    transform: translateY(-6px);
    transition: transform
       250ms
       cubic-bezier(.3, .7, .4, 1.5);
   }
   
   button:active .front {
    transform: translateY(-2px);
    transition: transform 34ms;
   }
   
   button:hover .shadow {
    transform: translateY(4px);
    transition: transform
       250ms
       cubic-bezier(.3, .7, .4, 1.5);
   }
   
   button:active .shadow {
    transform: translateY(1px);
    transition: transform 34ms;
   }
   
   button:focus:not(:focus-visible) {
    outline: none;
   }