* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}
body{
    height: 500rem;
    background-color: #ede0e0;
}
#top{
    position: sticky;
    top: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px;
    padding: 15px 90px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
    position: absolute;
    top: 2px;
    left: 40px;
    display: flexbox;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

.nav-links {
    text-decoration: none;
    list-style: none;
    display: flex;
    gap: 90px;
}
.nav-links a{
    text-decoration: none;
    color: black;
}

.nav-links a:hover {
    color:  #d64d12 ;
}

.order-btn{
    background-color: #d64d12;
    color: rgb(241, 233, 233);
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.order-btn:hover {
    background-color: #38b39a;
}