

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #252525;
    flex-direction: column;
}

.wrapper {
    width: 420px;
    background: #252525;
    border: 2px solid #fcbc0f;
    color: #fcbc0f;
    border-radius: 10px;
    padding: 30px 40px;
}

.wrapper h1 {
    font-size: 36px;
    text-align: center;
}

.wrapper .input-box {
    width: 100%;
    height: 50px;
    margin: 30px 0;
}

.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid #fcbc0f;
    border-radius: 40px;
    font-size: 16px;
    color: #c0c0c0;
    padding: 20px 45px 20px 20px;
}

.input-box input::placeholder {
    color: #c0c0c0;
}

.wrapper .btn {
    width: 100%;
    height: 45px;
    background: #fcbc0f;
    border: none;
    outline: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;
    color: #252525;
    font-weight: 600;
}

p {
    position: fixed;
    padding-top: 20px;
}


/* _____________________________________________________________ */

.number-container {
    display: flex;
    justify-content: center; 
    align-items: center; 
    height: 20vh;
}

h2 {
    position: relative;
    font-size: clamp(3rem, 6vw, 8rem);
    color: #252525;
    -webkit-text-stroke: 0.05vh #8e8e8e;
    text-transform: uppercase;
    white-space: nowrap; 
    line-height: 1; 
    display: flex;
}
  
h2::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    color: #fcbc0f;
    -webkit-text-stroke: 0.2vh #282828;
    border-right: 3px solid #fcbc0f;
    overflow: hidden;
    animation: animate 6s linear infinite;
}
  
@keyframes animate {
    0% {
      width: 0;
    }
    70% {
      width: 100%;
    }
}