*{
    margin:0;
    box-sizing:border-box;
}
    body{
      background-color:#ffe !important;
  }
  
  /*STYLES FOR NAV*/
  .container-fluid{
    background-color:white;
    display:flex;
    justify-content:center;
    position:fixed;
    top:0;
    z-index:4;
  }
  .navbar-nav{
    display:flex;
    justify-content:space-around;
    width:100%;
    padding:5px;
  }
  .nav-link{
    text-decoration:none;
    color:#190B28;
    font-weight:bold;
    padding:15px 25px;
    cursor:pointer;
  }
  .nav-link:hover{
    border:1px solid;
  }
  .nav-link:active{
    opacity:0.7;
  }
  .cart-icon{
    width:20px;
  }
  .zero{
    margin-left:0;
    padding:10px;
    border:1px solid;
  }
  /*END OF THE STYLES FOR NAV*/
  #intro{
    animation:typing 3s steps(30, end), blink-caret 0.5s step-end;
  }
  .h1{
    text-align:center;
      font-size:40px;
      padding:5px;
      color:#190B28;
      font-family: 'Oswald', sans-serif;
      font-weight:bold;
  }  
  .center{
    text-align:center;
  }  
  .p{
    color:#190B28;
  }
  .my-buttons{
    margin:20px 0; 
    padding:10px 50px;
    border:none;
    color:white;
    background-color:#190B28;
    transition: background-color 0.4s ease-in-out;
    font-weight:bold;

  
  }
  .my-buttons:hover{
   cursor:pointer;
    background-color:#ffe;
    color:#190B28;
    border:1px solid black;
  }
  .my-buttons:active{
    background-color: rgba(0, 0, 0, 100%);
  
  }
  .hidden{
    opacity:0;
    transform:translateY(-20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.show{
    opacity:1;
    transform:translateY(0);
}
.swal-modal{
  background:#ffe;
 }
 .swal-text{
     font-weight:bolder;
     color:#190B28;
 }
 
 .content{
     display:none;
 }
 .loader{
     display:flex;
     flex-flow:column;
     align-items:center;
     margin-top:25vh;
     gap:1rem;
 }
 .my-img{
  border-radius:50%;
  border:solid #190B28;
  padding:25px;
 }
 .loader-img{
  width:150px;
  height:auto;
 }
 .my-txt{
     margin-bottom:10em;
 }
 .loader span{
     color:blue;
     font-family:Georgia, 'Times New Roman', Times, serif;
 }