.shipping,
.login,
.search-bar {
  font-family: "radley", serif;
}

.shipping,
.logo {
  color: #735b58;
}

.shipping {
  background-color: #eee8da;
  border: solid #eee8da 3px;
  font-size: 15px;
  margin-top: 0px;
  text-align: center;
}

.header {
  align-items: center;
  border-bottom: 1px solid #776e5945;
  display: flex;
  padding: 0 80px;
  min-height: 100px;
  background-color: #ffffff;
}

nav {
  display: flex;
  justify-content: end;
}

.logo {
  font-size: 25px;
}

.logo:hover {
  color: #DA6457;
  transition: 1s;
}

.nav-item,
.search-bar input {
  font-size: 17px;
  font-family: "radley", serif;
}

/* Style the links inside the navigation bar */
.nav-item,
.logo {
  margin-left: 20px;
  padding: 14px 16px;
  text-align: center;
  text-decoration: none;
}

.nav-item {
  color: #d07e75;
}

/* Change the color of links on hover */
.nav-item:hover,
.cart {
  color: #da6457;
}

.logo {
  display: flex;
  font-family: "yeseva one", serif;
  letter-spacing: 3px;
  margin-left: 0;
  text-transform: uppercase;
  width: 100%;
}

.hidden {
  display: none;
}

/* Style the search box inside the navigation bar */
.search-bar {
  align-items: center;
  border: solid 2px #eee8da;
  border-radius: 50px;
  color: #eee8da;
  display: flex;
  padding: 6px;
  width: 100%;
}

.search-bar input,
button {
  border: none;
}

.search-bar input:focus {
  outline: none; 
  color: #d07e75;
  opacity: 70%;
}

.nav-cart-container {
  align-items: center;
  display: flex;
  justify-content: end;
  width: 100%;
}

.cart {
  background-color: #ffffff;
  display: flex;
  justify-content: end;
  margin-left: 30px;
  padding-right: 30px;
}

@media screen and (max-width: 600px) {
  .header {
    flex-direction: column;
  }
}

hr {
    border-top: 1px solid #776e59;
}
.display-1 {
    color: #DA6457;
    font-family: "Yeseva One", serif;
    text-align: center;
    font-size: 30px;
    margin-top: 30px;
}

.body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .container {
    width: 100%;
    height: 100vh;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .contact-form {
    background: #EEE8DA;
    display: flex;
    flex-direction: column;
    padding: 2vw 4vw;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
  }
  
  .contact-form h3 {
    color: #735B58;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: "Yeseva One", serif;
  }
  
  .contact-form input, form textarea {
    border: 0;
    margin: 10px 0;
    padding: 20px;
    outline: none;
    background: #f8f9fa;
    color: #735B58;
    font-size: 16px;
    font-family: "radley";
  }
  .contact-form button {
    padding: 15px;
    background: #DA6457;
    color: #f8f9fa;
    font-size: 18px;
    border: 0;
    outline: none;
    cursor: pointer;
    width: 150px;
    margin: 20px auto 0;
    border-radius: 30px;
    font-family: Arial, Helvetica, sans-serif;
  }