@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

:root {
    --skyBlueColor: #15ede7;
    --pinkColor: #f023cf;
    --animate-duration: 2s;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #000;
    color: #fff;
}

h1,
h2 {
    font-weight: 600;
}

a {
    color: var(--skyBlueColor);
    text-decoration: none;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    outline: none;
}

a:hover,
a:focus {
    color: #111;
    text-decoration: none;
    outline: none;
}

.text-teal {
    color: var(--skyBlueColor);
}

.text-orange {
    color: var(--pinkColor);
}

.btn-success {
    background: var(--skyBlueColor);
    padding: 0.375rem 1.75rem
}

.btn-success:hover {
    background: var(--skyBlueColor);
    opacity: 0.8;
}

/* coding begin here */
header {
    text-align: center;
    padding: 50px 0px;
}

.jordan-img-wrapper {
    margin-top: -120px;
}

.jordan-img-wrapper h2 {
    background: var(--skyBlueColor);
    color: #000;
    text-align: center;
    padding: 6px 20px;
}

.launching-img-wrapper {
    margin-top: 50px;
    margin-left: -20px;
}

.jordan-with-virat-img-wrapper {
    margin-top: -80px;
}

.welcome-section-text {
    margin-top: 50px;
    text-align: center;
}

footer {
    padding-top: 50px;
}

footer .footer-box h6 {
    color: var(--skyBlueColor);
    font-weight: bold;
}
footer .footer-box span{
    font-size: 85%;
}

footer .footer-img {
    text-align: center;
}


.typewriter h2 {
    overflow: hidden;
    white-space: nowrap; 
    margin: 0 auto; 
    animation: 
    typing 3.5s steps(40, end),
    blink-caret .75s step-end infinite;
    margin-bottom: 10px;
}
  
  @keyframes typing {
    from { width: 0 }
    to { width: 100% }
  }

/* coding ends here */

