*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Gill Sans", sans-serif;
}


body{
    display: flex;
    flex-direction: column;
    height: 100vh;
    background: #222;
} 


header nav{
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 10px;
    width: 800;
    max-width: 90%;
    flex-wrap: wrap;
    gap: 18px;

}

header nav a{
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: black;
    cursor: pointer;
    color: #fff;
}


/* header nav h1{
    border: none;
    border-radius: 50%;
    padding: 8px;
    color: #fff;
} */


header nav h1:hover{
    background-color: rgba(255, 255, 255, 0.268);
}

header nav button{
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 50px;
    background-color: rgb(58, 49, 230);
    color:#ffff;
    cursor: pointer;
}



main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 20px;
    color: #fff;
}




main .first:hover{
    /* box-shadow:inset 2px 2px 3px grey,
     2px 2px 3px grey; */
    opacity: 0.8;
   
}




main h1{
    font-size: 6rem;
    font-weight: 400;
}




main .first{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    border: 0.5px solid grey;
    border-radius: 30px;
    background-color: #444;
    width: 100%;
    max-width: 600px;

}

main .first input{
    background: #444;
    border: none;
    outline: none;
    font-size: 20px;
    color: #fff;
    flex: 1;

}


main .first a{
    color: lightgray;
}


 main .secound{
    display: flex;
    gap: 10px;
 }

 main .secound button{
    border: none;
    padding: 10px;
    cursor: pointer;
    background: #444;
    color: #fff;

 }

 main .secound button:hover{
    box-shadow: 2px 2px 3px grey;
 }

 main h2{
    font-size: 0.8rem;
 }
 main a{
    text-decoration: none;
 }



 footer{
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 200px;
 }

 footer .item{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #fff;
    padding: 0 10px 10px 10px;
    font-size: 0.8rem;
    width: 100%;
    height: 100%;
    overflow: hidden;
 }

 footer .item .Aclass{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
 }

 footer .item .Aclass a{
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 1;
 }

 footer  h3{
    color: #fff;
    padding: 0 10px;

 }

