@import url('https://fonts.googleapis.com/css2?family=Outfit&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

html{
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body{
    padding: 0%;
    margin: 0%;
    font-family: 'Outfit', sans-serif;
}

.mainintro{
    width: 100%;
    height:fit-content;
    padding: 25px;
    background: #000;
    
}

.bgi>img{
    width: 100%;
    height: fit-content;
    object-fit: contain;
}



.icontext>h1{
    font-size: 100px;
    width: fit-content;
    margin: auto;
    text-align: center;
    margin-top: 20%;
    color: transparent;
    font-family: 'Bebas Neue', sans-serif;
    background-image: url("./assests/30238337_7652324.jpg");
    background-size: cover;
    background-position:center;
    background-clip: text;


}

.intro-btn{
    width: 100%;
    height: fit-content;
    padding: 3%;
    display: flex;
    justify-content: center;
}

.explore>a{
    text-decoration: none;
    color: white;
}

/* animated search btn */
.explore {
    z-index: 1;
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    border: none;
    outline: none;
    border-radius: 0.4rem;
    cursor: pointer;
    text-transform: uppercase;
    background-color: rgb(14, 14, 26);
    color: rgb(234, 234, 234);
    font-weight: 700;
    transition: 0.6s;
    box-shadow: 0px 0px 60px #1f4c65;
    -webkit-box-reflect: below 10px linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.4));
  }
  
  .explore:active {
    scale: 0.92;
  }
  
  .explore:hover {
    background-image: linear-gradient(0deg, rgb(249, 66, 6),rgb(250, 134, 22),rgb(251, 202, 37));
  }



.title{
    text-align: center;
}


/* intro portion */

.intro{
    width: 100vw;
    height: fit-content;
    /* padding: 50px; */
    background: #000;
    overflow: hidden;
}
.intro>form{
    border: 2px solid white;
    width: fit-content;
    height: fit-content;
    padding: 50px;
    row-gap: 30px;
    margin: 3% auto;
    border-radius: 10px ;
}


/* text box */
.input-group {
position: relative;
}

.input {
    margin: auto;
    border: solid 1.5px #9e9e9e;
    border-radius: 1rem;
    background: none;
    padding: 1rem;
    font-size: 1rem;
    color: #f5f5f5;
    transition: border 150ms cubic-bezier(0.4,0,0.2,1);
}

.user-label {
position: absolute;
left: 15px;
color: #e8e8e8;
pointer-events: none;
transform: translateY(1rem);
transition: 150ms cubic-bezier(0.4,0,0.2,1);
}

.input:focus, input:valid {
outline: none;
border: 1.5px solid #f7f7f8;
}

.input:focus ~ label, input:valid ~ label {
transform: translateY(-50%) scale(0.8);
background-color: #212121;
padding: 0 .2em;
color: #fefefe;
}

/* form submit button */

form>button {
width: 200px;
margin: auto;
font-size: 20px;
color: #e1e1e1;
font-family: inherit;
font-weight: 800;
cursor: pointer;
position: relative;
border: none;
background: none;
text-transform: uppercase;
transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
transition-duration: 400ms;
transition-property: color;
}

form>button:focus,
form>button:hover {
color: #fff;
}

form>button:focus:after,
form>button:hover:after {
width: 100%;
left: 0%;
}

form>button:after {
content: "";
pointer-events: none;
bottom: -2px;
left: 50%;
position: absolute;
width: 0%;
height: 2px;
background-color: #fff;
transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
transition-duration: 400ms;
transition-property: width, left;
}

form>button>span{
    position: relative;
    left: 10%;
}

/* main container */

.maincontainer{
    width: 100vw;
    padding: 50px;
    
}

.nouser{
    width: 100vw;
    display: none;
    justify-content: center;
    height: 400px;
    
}
.nouser>h1{
    font-size: 100px;
    text-align: center;
}

.profilepic{        
    width: 100%;
    height: 300px;
    background-image: url("./assests/bussiness-man.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    mix-blend-mode: multiply;
}

.context{
    text-align: center;
    border-radius: 50px;
    background: #e0e0e0;
    box-shadow:  16px 16px 5px #bebebe;
}

/* repo container */


.repo{
    text-align: center;
    border: 2px solid black;
    border-radius: 15px;
    overflow: hidden;
    margin:3% auto;
    
}

.repo h1, .repo h2, .repo p{
    margin: 0%;
    margin-bottom: 10px;
}

.repo>h1{
    color: white;
    background: black;

}

.repo>p{
    border-bottom: 1px solid black;
}

.repo>.lastinfo{
    border: none;
}

.sample{
    display: none;
}

.starcount, .watchers{
    font-size: 20px;
}

.starcount>span, .watchers>span{
    margin-bottom: 0%;
    margin-right: 5px;
}

