

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

nav {
    width: 100%;
    height: 100px;
    background-color: aquamarine;
    color: brown;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 50px;
    position: fixed;
    top: 0;
    z-index: 1;
}


.menu {
    width: 65%;
    display: flex;
    justify-content: right;
    list-style: none;
    padding-top: 20px;
}

.menu li {
    margin-left: 20px;

}

.menu li a {
    font-size: 18px;
    color: rgb(43, 156, 226);
    text-decoration: none;
    transition: 0.3 ease;
    display: flex;
    padding-right: 100px ;

}

.menu li a:hover {
    font-size: 18px;
    color: rgb(43, 226, 98);
    text-decoration: none;
    transition: 0.3 ease;

}


.search {
    display: flex;
    margin: 0;

    
}

.search input {
    padding: 10px;
    border: 1px solid red;
    outline: none;
    border-radius: 5px;
    margin-right: 10px;
    font-size: 15px;

}


.search button {
    padding: 10px;
    background-color: chocolate;
    border: none;
    border-radius: 5px;
    color: pink;
    font-size: 16px;
    cursor: pointer;
}

.search:focus-within form {
    background-color: bisque;
}
.search button:hover {
    background-color: indianred;
}

.down {
    width: max-content;
    height: max-content;
    transition: transform 0.2s ease-out;
}

.down:hover {
    content:url(img/up.png);
    width: 100px;
    height: 100px;
    transform: translateY(-10px);
}


.pic {
    float: right;
}


.hero {
    padding-top: 130px;
    padding-left: 30px;
    padding-right: 30px;
}


.hero li {
    list-style: none;
}