
@import url('https://fonts.googleapis.com/css2?family=Kode+Mono:wght@400..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    
}

body{
    line-height: 1.6;
    background-color: #e8dfce;
}

h1{
    font-size: 56px;
    font-weight: 700;
    text-align: center;
    margin: 40px 0 60px 0;
    font-family: "Kode Mono", monospace;
    color: #b65149;
}

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 6px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    font-size: 18px;
    color: #333;
    background-color: #ffffff;
    outline: none;
}

#search-button{
    padding: 10px 20px;
    color: #ffffff;
    background-color: #7e8e65;
    border: none;
    font-size: 18px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border-radius: 5px;
    margin-left: 15px;
}

.search-results{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}
.search-result{
    margin-bottom: 60px;
    width: 30%;
    height: 100%;
    border-radius: 5px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    background-color: #e09b80;
    overflow: hidden;
}

.search-result img{
    width: 100%;
    height: 200%;
    object-fit: cover;
    transition: opacity 0.2s ease-in-out;
}

.search-result:hover  img{
    opacity: 0.8;
}

.search-result a{

    font-size: 20px;
    text-decoration: none;
    color: #333;
    display: block;
    padding: 10px;
    text-transform: capitalize;
}

#search-more{
    background-color: #7e8e65;
    font-size: 18px;
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    text-align: center;
    display: block;
    margin: 30px auto;
    border-radius: 5px;
    cursor: pointer;
    display: none;
}

@media screen and (max-width: 800px) {
    .search-results{
        padding: 20px;
    }
    
    .search-result{
        width: 45%;
    }
    
}

@media screen and (max-width: 400px) {
    .search-result{
        width: 100%;
    }
    
}