/* Google Fonts Import Link */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); */
body{
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

:root{
  --primary-color: #ffffff;
  --secondary-color: #2A2A2A;
  /* --tertiary-color:  */
  /*  */
}

.dark-theme{
  --primary-color: #2A2A2A;
  --secondary-color: #ffffff;
}


.card-body{
  background-color: var(--primary-color);
}

.mysty{
    transition: transform 0.3s ease-in-out;
    height: 250px;
    width: 350px;
}
.mysty:hover{
    transform: scale(1.1);
}





.nav-links{
  position: -webkit-sticky;
  position: sticky;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffa900;
  /* padding: 15px 15px; */
  border-radius: 12px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.logo{
  transition: transform 0.3s ease-in-out;
  width: 80px;
  height: auto;
  float: left;
}
.logo:hover{
  transform:rotate(30deg);
}

.nav-links li{

  list-style: none;
  margin: 0 12px;
}
.nav-links li a{
  position: relative;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  padding: 6px 0;
  text-decoration: none;
}
.nav-links li a:before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: red;
  border-radius: 12px;
  transition: all 0.4s ease;
}
.nav-links li a:hover:before{
  width: 100%;
}
.nav-links li.center a:before{
  left: 50%;
  transform: translateX(-50%);
}
.nav-links li.upward a:before{
  width: 100%;
  bottom: -5px;
  opacity: 0;
}
.nav-links li.upward a:hover:before{
  bottom: 0px;
  opacity: 1;
}
.nav-links li.forward a:before{
  width: 100%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}
.nav-links li.forward a:hover:before{
  transform: scaleX(1);
  transform-origin: left;
}

.theme{
  flex: 1;
  text-align: right;
}

.btn{
  background-color: #ffa900;
  transition: transform 0.5s ease-in-out;
  }

.btn:hover{
  background-color: red;
  transform: scale(1.1);
}


.foot{
  display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.width{
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
}

.checked{
  color: #ffa900;
}

.contain{
  color: grey
}

#icon{
  width: 30px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

#icon:hover{
  transform: rotate(30deg);
}
.eleven h1 {
  font-size:30px;text-align:center; line-height:1.5em; padding-bottom:45px; font-family:"Playfair Display", serif; text-transform:uppercase;letter-spacing: 2px; color:#111;
}

.button-92 {
  --c: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, #0000 33%, #fff5, #0000 67%) var(--_p, 100%)/300% no-repeat,
    #004dff;
  color: #0000;
  border: 2px solid black;
  transform: perspective(500px) rotateY(calc(20deg*var(--_i, -1)));
  text-shadow: calc(var(--_i, -1)* 0.08em) -.01em 0 var(--c),
    calc(var(--_i, -1)*-0.08em) .01em 2px #0004;
  outline-offset: .1em;
  transition: 0.3s;
}

.animate-charcter
{
   text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 29%,
    #ff1361 67%,
    #fff800 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
      font-size: 55px;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}