*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: sans-serif;
}

.logoImage{
    height: 3rem;
    object-fit: cover;
    border-radius: 50%;
    cursor: pointer;
}

nav ul{
    display: flex;
    gap: 30px;
}

nav ul li{
    list-style: none;
}

nav ul li a{
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 1.2rem;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: rgb(161, 108, 10);
    height: 80px;
}

.heroImaage{
    height: 30rem;
    width: 30rem;
    object-fit: cover;
    border-radius: 15px;
}

.herosection{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
}

.heroSubTextDiv{
    max-width: 450px;
}