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

:root {
    --skyBlueColor: #60c0ca;
    --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 {
    color: var(--skyBlueColor);
    text-align: center;
    padding: 6px 20px;
}

.launching-img-wrapper img {
    margin-bottom: 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 {
    background: #333;
    text-align: center;
    padding: 8px 0px;
}

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

footer .footer-box img {
    margin-right: 5px;
}

footer .footer-box span {
    font-size: 85%;
}

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


.typewriter h2, .date {
    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%
    }
}

.date {
    text-align: center;
    font-weight: bold;
    font-size: x-large;
    margin-top: 10px;
}

.jordan-right-text {
    text-align: center;
}

.jordan-right-text h2 {
    color: var(--skyBlueColor);
}

/* coding ends here */