
* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}


body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #d09066;
}




/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}


    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
    }

    .navbar {


      background-color: #f5c4c0;
 
      padding: 10px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .search-bar {
      display: flex;
      align-items: center;
    }

    .search-bar input[type="text"] {
      padding: 8px;
      border-radius: 5px;
      border: 1px solid #ccc;
      margin-right: 5px;
    }

    .search-bar button {
      padding: 8px 15px;
      border: none;
      background-color: #c790af;
      color: white;
      border-radius: 5px;
      cursor: pointer;
    }

    .search-bar button:hover {
      background-color: #45a049;
    }
    ::placeholder {
      color:red;
      opacity: 1; 
    }


    /* Style for the slider */
    .slider {

        width: 100%;
        height: 25px;
        background: #d91e1e;
        outline: none;
        opacity: 1;
        -webkit-transition: 0s;
        transition: opacity 0s;
    }

  

    

  
/* Change color on hover */
.topnav a:hover {
  background-color: #e98944;
  color: black;

}

/* Style the content */
.content {

  background-color:#f5c4c0;
  padding: 29px;
 

}

/* Style the footer */

  footer {
    background-color: #ee6e73;
    text-align: center;
    display: inline-block;
    padding: 10px;
    width: 100%;
    height: auto;
    color: #0A0A0A;
  }
  footer ul {
    width: 100%;
    float: left;
    margin-top: 25px;
    margin-bottom: 25px;
  }
  footer .logo {
    width: 45px;
    margin-bottom: 10px;
  }
  footer .copyright {
    width: 100%;
    display: inline-block;
    margin-bottom: 30px;
  }
  ul.linear-list li {
    display: inline-block;
    padding: 10px;
}

/* Style for the slider */
.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 25px;
  background: #981919;
  outline: none;
  opacity: 1;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

/* Style for the slider thumb */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: #844caf;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #24ad28;
  cursor: pointer;
}

