@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: "poppins", sans-serif;
}

body {
    background: rgb(0,255,239);
    background: linear-gradient(90deg, rgb(70, 156, 255), rgb(148, 63, 245), rgb(227, 8, 247) 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.info {
    background-color: black;    /* Black strip background */
    color: white;               /* White text */
    font-size: 12px;            /* Font size */
    font-weight: bold;          /* Bold text */
    white-space: nowrap;        /* Prevent text wrapping */
    overflow: hidden;           /* Hide overflow text */
    position: fixed;            /* Stick to the top */
    top: 0;
    width: 100%;                /* Full-width */
    padding: 5px 0;            /* Padding for height */
    z-index: 1000;              /* Ensure it's above other elements */
  }
  
  /* Moving text */
  .info span {
    display: inline-block;
    padding-left: 100%;         /* Start text off-screen */
    animation: scroll 20s linear infinite; /* Smooth scrolling animation */
  }
  
  /* Keyframes for scrolling effect */
  @keyframes scroll {
    0% {
      transform: translateX(0); /* Start at full padding */
    }
    100% {
      transform: translateX(-100%); /* Move completely off-screen */
    }
  }

header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;

}
.logo {
    font-size: 2em;
    color: black;
    pointer-events: none;
}

.navbar a {
    text-decoration: none;
    color: black;
    padding: 6px 15px;
    border-radius: 20px;
    margin: 0 10px;
    font-weight: 600;
}
.navbar a:hover,
.navbar a.active{
    background-color: rgb(0, 0, 0);
    color: white;
}

.temp {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* #text{
    position: absolute;
    font-size: 5em;
    color: blue;
} */

svg path {
    fill: transparent;
    stroke: black;
    stroke-width: 1;
    stroke-dasharray: 50;
    stroke-dasharray: 50;
    animation: textAnimation 4s ease-in-out 1 forwards;
}

@keyframes textAnimation {
    0% {
        stroke-dashoffset: 60;
    }
    80%{
        fill: transparent;
    }
    100%{
        fill: blue;
        stroke-dashoffset: 0;
    }
}

/* footer{
    height: 60px;
    width: 100%;
    background-color: black;
    color: white;
    font-family: poppins;
    text-align: center;
} */
