
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Outfit';
    background-color: #fdfbd4;
    
}
.contanier{
    position: absolute;
    height: 100vh;
    top: 50%;
    left: 50%;
}
.left{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.left-title h2{
    font-weight: 600;
    color: #a363aa;
    font-size: 40px;
}
.left-title hr{
    border: none;
    width: 120px;
    height: 5px;
    background-color: #a363aa ;
    border-radius: 10px;
    margin-bottom: 20px;
}
.input-left{
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #666;
    border-radius: 50px;

}
#msg{
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
}
.input-left:focus{
    border: 2px solid #ff994f;
}
.input-left::placeholder{
    color: #a9a9a9;
}
.left button{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color:#fff;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(270deg,#ff994f,#fa6d86);
    cursor: pointer;
}
.left button img{
    height: 15px;
}
.hellohi{
    position: absolute;
    top: 25%;
    left: 60%;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: beige;
}

.nav_links{
    list-style: none;

}
.nav_links li {
    display: inline-block;
    padding: 0px 20px;
    
}
.nav_links li a{
    transition: all 0.3s ease 0s;
    
}
.nav_links li a:hover{
    transition: all 0.3s ease 0s;
    color: gray;
}   
.main_front{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 180px;
}
.text{
    background-color: rgba(0,255,255,1);
    font-size: 100px;
    border-radius:10px ;
}

.main_front{
    position: absolute;
    left: 7%;
    top: 20%;
}

.text1{
    position: absolute;
    left: 38%;
    top: 55%;
    font-size: 20px;

}