*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Times New Roman', Times, serif;
}
body{
    overflow-x: hidden;
}
section{
    padding-top: 5px;
    padding-bottom: 55px;
}

/*start header*/
header{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    background-color: transparent;
    position: fixed;
    z-index: 999;
}

.container{
    display: flex;
    justify-content: space-between;
    background-color:transparent;
    align-items: center;
    text-decoration: none;
    padding-top: 10px;
}    

ul{
    display: flex;
}
ul li{
    margin-left:18px ;
    list-style: none;
    position: relative;
    font-weight: bold;
    color: #491503;
}
ul li::after{
    content: "";
    background-color: #491503;
    top: 30px;
    left: 0px;
    width: 0;
    height: 5px;
    position: absolute;
}
ul li:hover::after{
    transition: 0.5s;
    width: 100%;
}
ul li:hover{
    cursor: pointer;
    color:#9c916e;
}
a:link{
    text-decoration: none;
}
ul li a{
    text-decoration: none;
    
}

@media (max-width: 1024px){
    header ul{
        flex-direction: column;
        margin-left: 80px;
    }
}
/*end header*/

.main {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(imgs/golden-puppy-dog-little-retriever-labrador-pops-out-blue-paper-mockup-banner-template-advertisement_334782-12602.jpg);
    height: 60vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color:white;
    font-family:Arial, Helvetica, sans-serif;
    
}
.content {
    padding: 20px;
    border-radius: 10px;
}

.search-bar {
    display: flex;
    margin-top: 20px;
    
}

.search-bar input {
    width: 600px;
    padding: 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
}
@media (max-width: 768px) {
    .main {
      height: 50vh;
      background-size: contain;
    }
  
    .search-bar input {
      width: 100%;
      padding: 10px;
      font-size: 14px;
    }
  }
.search-bar button {
    padding: 10px;
    border: none;
    background-color: #2c3e50;
    color: white;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

main {
    padding: 20px;
    margin: 20px auto;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
main h1 ,h2,h3{
    margin: 20px;
    color: #491503;
}
main p{
    margin: 20px;
}
h6{
    margin: 10px;
    padding: 10px;
}

/*start footer*/
footer{
    display: flex;
    background-color: #FDF7F4;
    color: #491503;
    padding: 18px 120px;
    justify-content: space-between;
}
.icons {
    text-decoration: none;
    font-size: 20px;
    margin-left: 22px;
}
#cicons{
    margin-top: 20px;
}
.icons a:hover{
    font-size: 25px;
    font-weight: bolder;
}

@media(max-width:1024px){
   footer{
    padding: 20px;
   } 
}
/*end footer*/