:root {
    --night: #0f1334;
    --blue:rgb(91 100 220);
    --blue-electric: rgb(124, 133, 254);
    --grey-blue:#323262;
  }

body{
    background-color: var(--night) !important;
    color: white;
}

.navbar-toggler:focus {
    box-shadow: none !important; 
}

@keyframes navbar {
    0%{
        transform: translateY(-100px);
        opacity: 0 !important;
    }
    50%{
        transform: translateY(3px);
    }
    65%{
        transform: translateY(-3px);
    }
    100%{
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes popUp {
    0%{
        transform: scale(0.9);
        opacity: 0;
    }
    40%{
        transform: scale(0.9);
        opacity: 0;
    }
    60%{
        transform: scale(1.15);
        
    }
    100%{
        transform: scale(1);
        
    }
}

.navbar-custom{
    position: fixed;
    z-index: 5;
    top : 0px;
    width : 100%;
    padding: 10px;
    animation: navbar 1s;
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
}


@media screen and (max-width: 600px) {
    .name{
        font-size: 13px !important;
        color : white !important;
        margin-left: 2px;
    }   
}

@media screen and (min-width: 601px) {
    .name{
        font-size: 1.5rem !important;
        color : white !important;
        margin-left: 10px;
    }   
}

/* nav bar */

.navbar{
    width:98%;
    border-radius: 15px;
    /* background-color: #f9f9f9 !important; */
    background: var(--blue);
}
.nav-link{
    color : white !important;
    margin-inline: 15px;
}


.navbar-collapse{
    justify-content:flex-end;
}


.hover-underline-animation {
  display: inline-block;
  position: relative;
}

.hover-underline-animation::after {
  content: '';
  position: absolute;
  width: 90%;
  opacity: 0.5;
  transform: scaleX(0);
  height: 1px;
  bottom: 5px;
  left: 5%;
  background-color: #ffffff;
  transition: transform 0.2s ease-out;
}

.hover-underline-animation:hover::after {
  transform: scaleX(1);
  transform-origin: bottom center;
}
/* navbar */
/* main */
.sectionLegal{
    margin-top: 100px;
    color: white;
    width: 90%;
}

.containerCustom{
    display: flex;
    justify-content: center;
    align-items: center;
}

p{
    font-size: 1.1rem;
}
/* main */

/* footer */
.footer{
    margin-top: 50px;
    display: flex;
    align-items: center;
    background-color: var(--grey-blue);
    padding: 40px;
    color: white;
    text-align: center;
}

.footer-text-l{
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-text-l a{
    margin: 10px;
}

.footer-text-r{
    /* border: red 1px solid; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-text-r a{
    margin: 10px;
    color: white;
    text-decoration: none;
    white-space: nowrap;
}