*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
nav{
    background-color: white;
    width: 100%;
    display: flex;
    justify-content: center;
}
.nav{
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 8vh;
}
.logo img{
    height: 7vh;
}
.links{
    display: flex;
    justify-content: space-between;
    width: 30%;
    color: #555555;
}
.links a{
    text-decoration: none;
    color: #555555;
}
.links button{
    background-color: #f3f3f3;
    color: #000;
    border: 1px solid wheat;
    height: 4vh;
    width: 5vw;
}
.links a:hover{
    color: #000;
}
section{
    width: 100vw;
    background-image: url(./Assets/top\ bg.jpeg);
    background-size: contain;
    display: flex;
    justify-content: center;
    height: 80vh;
}
.container-1{
    display: flex;
    width: 80%;
}
.part1{
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content:center;
    font-size: 1.4rem;
}
.part1 h1{
    margin-bottom: 5vh;
}
.part2 img{
    height: 80%;
    width: 100%;
}
.user-data{
    width: 100%;
    display: flex;
    justify-content: center;
    height: 70vh;
}
.container{
    width: 80%;
    height: 50vh;
}
.box1{
    background-image: url(./Assets/people.svg);
    background-repeat: no-repeat;
    background-position: center;
}
.box2{
    background-image: url(./Assets/cost.svg);
    background-repeat: no-repeat;
    background-position: center;
}
.box3{
    background-image: url(./Assets/happy.svg);
    background-repeat: no-repeat;
    background-position: center;
}
ul{
    display: flex;
    justify-content: space-around;
    margin-top: 10vh;
}
ul li{
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: end;
}
h3{
    text-align: center;
    color: #018b2e;
    font-size: 2rem;
}
.box{
    height: 20vh;
    width: 16vw;
}
.container>p{
    margin-top: 5vh;
}
h2{
    margin-top: 5vh;
}
footer{
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
}
.footer-container{
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 70vh;
}
.footer-links{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.footer-links li{
    list-style: none;
}
.footer-links a{
    color: #545454;
    text-decoration: none;
}
.footer-links ul{
    display: flex;
    flex-direction: column;
    gap: 2vh;
}
.social-icon{
    display: flex;
    justify-content: space-between;
}
.social-icon a{
    border-radius: 50%;
    background-color: #ffffff;
}