@import url('https://fonts.googleapis.com/css2?family=ADLaM+Display&family=Rubik:wght@300&display=swap');
*{
    text-decoration: none;
    list-style: none;
    color: #99031E;
    border-radius: 8px;
}
body{
    background-color: #FFECCE;
    font-family: 'ADLaM Display', cursive;
    margin: 0;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #47511c;
    padding:0px 15px;
}
.navbar .logo{
    display: flex;
    align-items: center;
    text-align: center;
}
.navbar .list ul{
    display: flex;
    flex-direction: row;
    gap: 60px;
}
.navbar a{
    font-size: 25px;
    text-decoration: solid;
    color: #FFECCE;
}
.navbar ul li a:hover{
    text-decoration: underline;
}
.navbar .list .button{
    border: #FFECCE solid;
    background-color: #47511c;
    color: #FFECCE;
    padding: 0px 5px;
}
.home{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
}
.home .text{
    line-height: 0.01px;
}
.home .text .title{
    color: #47511c;
    font-size: 90px;
    font-family: 'ADLaM Display', cursive;
    text-align: center;
    line-height: 80px;
}
.home .text .text1{
    font-size: 40px;
    text-align: center;
    line-height: 40px;
}
.home .input{
    display: flex;
    align-items: center;
    gap: 10px;
}
.home i{
    font-size: 50px;
}
.home input{
    font-size: 20px;
    color: #99031E;
    border: #99031E solid 5px;
    border-radius: 30px;
    background-color: #FFECCE;
    width: 300px;
    margin-left: 225px;
    padding: 10px 20px;
    text-align: center;
}