body{
    background-color: #f9f9f9;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    margin: 0;
}
h1{
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 60px;
}


.navbar {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: white;
}

.nav-button{
    width: 3.5rem;
    height: 2rem;
    margin-right: 0.8rem;
    padding:0.5rem;
    background-color: white;
    border-radius:.5rem;
}

.brand-title {
    font-size: 1.5rem;
    margin: .5rem;
    font-style: oblique 10deg;
    text-decoration: none;
    
}

.brand-title img{
    opacity: 0.5;
    align-items: center;
}
.navbar-links {
    height: 100%;
}

.navbar-links ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem;
}

.navbar-links li {
    list-style: none;
}

.navbar-links li a {
    display: block;
    text-decoration: none;
    color: white;
    padding: 0.4rem;
}

.navbar-links li:hover {
    background-color: #555;
}

.toggle-button {
    position: absolute;
    top: 4.75rem;
    right: .2rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
}


form{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    
}

#search-input{
    width: 60%;
    max-width: 400px;
    padding: 10px 20px;
    border: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    border-radius: 5px;
    font-size: 18px;
    color: #333;

}
#search-button{
    padding: 10px 20px;
    background-color: #ffca12;
    border: none;
    font-size: 18px;
    font-weight: 900;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    cursor: pointer;
    border-radius: 5px;
    font-size: 18px;
    color: #2c2a28;
    transition: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

#search-button:hover{
    background-color: rgb(255,154,100);
    color: #fff;
    font-weight: 900;

}
.search-results{
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;


}
.search-result{
    margin-bottom: 60px;
    width: 30%;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .4);
    overflow: hidden;

}

.search-result:hover img{
    transform: scale(1.05);

}
.search-result img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: trasform .3s ease-in-out;
}

.search-result a{
    padding: 10px;
    display: block;
    color: #333;
    background-color: #ffca12;
    text-decoration: none;
    
}
.search-result:hover{
    background-color: rgb(255,154,100);
}

#show-more-button{
    background-color: #ffca12;
    border: none;
    font-size: 18px;
    font-weight: 900;
    color: #2c2a28;
    padding: 10px 20px;
    text-align: center;
    display:block;
    margin: 20px auto;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color .3s ease-in-out;
    /*display: none;*/
}

#show-more-button:hover{
    background-color: rgb(255,154,100);
    font-weight: 800;
    color: #fff;
}

footer{
    justify-content: space-between;
    display: flex;
    width:  100%;
    min-height: 250px;
    margin:  0;
    padding: 0;
    background: #C7C6C1;
   
    
}
.footer-content1{ 
    background-color: #ffca12;
    border: solid white;
    font-size: 18px;
    font-weight: 900;
    color: #2c2a28;
    height: 100%;
    width: 23%;
    padding: 1.5rem;
    text-align: left;
    text-decoration: none;
    display:block;
    margin: auto;
    border-radius: 1.5rem;
    cursor: pointer;
    transition: background-color .3s ease-in-out;
    justify-content: space-between;

    
}

.footer-content2{
    background-color: #ffca12;
    border: solid white;
    font-size: 18px;
    font-weight: 900;
    color: #2c2a28;
    height: 100%;
    width: 23%;
    padding: 1.5rem;
    text-align: left;
    text-decoration: none;
    display:block;
    margin: auto;
    border-radius: 1.5rem;
    cursor: pointer;
    transition: background-color .3s ease-in-out;

    
}
.footer-content3{
    background-color: #ffca12;
    border: solid white;
    height: 100%;
    width: 23%;
    font-size: 18px;
    font-weight: 900;
    color: #2c2a28;
    padding: 1.5rem;
    text-align: left;
    text-decoration: none;
    display:block;
    margin: auto;
    border-radius: 1.5rem;
    cursor: pointer;
    transition: background-color .3s ease-in-out;

    
}
.footer-content4{
    background-color: #ffca12;
    border: solid white;
    height: 100%;
    width: 23%;
    font-size: 18px;
    font-weight: 900;
    color: #2c2a28;
    padding: 1.5rem;
    text-align: left;
    text-decoration: none;
    display:block;
    margin: auto;
    border-radius: 1.5rem;
    cursor: pointer;
    transition: background-color .3s ease-in-out;

    
}



@media screen and (max-width: 488px){
    .search-result{
        width: 100%;
    }
    form{
        flex-direction: column;
    }
    #search-imput{
        margin-bottom: 20px;
        width: 85%;
    }
    #search-button{
        margin-top: 20px;
    }
    h1{
        font-size: 18px;
        font-weight: normal;
        text-align: center;
        margin-top: 60px;
        margin-bottom: 20px;
    }
    
}
footer{
    justify-content: space-between;
    display: flex;
    width:  100%;
    min-height: 250px;
    margin:  0;
    padding: 0;
    background: #C7C6C1;
   
    
}
.footer-content1{ 
    background-color: #ffca12;
    border: solid white;
    font-size: 18px;
    font-weight: 900;
    color: #2c2a28;
    height: 100%;
    width: 23%;
    padding: 1.5rem;
    text-align: left;
    text-decoration: none;
    display:block;
    margin: auto;
    border-radius: 1.5rem;
    cursor: pointer;
    transition: background-color .3s ease-in-out;
    justify-content: space-between;

    
}
@media screen and (max-width: 760px){
    .search-result{
        width: 45%;
    }
    
    }

@media (max-width: 760px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .toggle-button {
        display: flex;
    }

    .navbar-links {
        display: none;
        width: 100%;
    }

    .navbar-links ul {
        width: 100%;
        flex-direction: column;
    }

    .navbar-links ul li {
        text-align: center;
    }

    .navbar-links ul li a {
        padding: .5rem 1rem;
    }

    .navbar-links.active {
        display: flex;
    }
    
    

    .navbar {
        position: relative;
        padding-top: 0;
        opacity: 80%;
    }

    .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: block;
        
    }

    .img-responsive {
        height: auto;
        width: auto;
        max-height: 156px;
        max-width: 250px;
        top: 109px;
    }

    .circle
    {
    width: 249px;
    height: 285px;
    border-radius:250px;
    font-size:50px;
    line-height:500px;
    text-align:center;
    background:#000
    }
    body {
        background: url(assets/hack2.jpg) no-repeat center center fixed;
        background-size: cover;
    }