.container {
    display: flex;
    flex-wrap: wrap;        
    gap: 4%;                
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
}
body{
    header{
        color: rgb(0, 119, 255);
        position: sticky;
        top: 0;
        z-index: 100; 
        backdrop-filter: blur(20px); 
        background-color: rgba(255, 255, 255, 0.7); 
        padding: 10px;
        width: 100%;
        box-sizing: border-box;
        h1 {
            text-align: center;
            margin-bottom: 10px;
        }
        input{
            width: 70%;        
            max-width: 600px;  
            height: 30px;
            border-radius: 5px;
            border: 1px solid #ccc;
            padding: 5px;
            box-sizing: border-box;
            display: inline-block;
        }
        button{
            width: 25%;        
            max-width: 100px;
            height: 30px;
            border-radius: 5px;
            border: none;
            background-color: rgb(0, 213, 255);
            color: white;
            font-weight: bold;
            cursor: pointer;
        }
    }
    .card {
    width: 48%;             
    background-color: #00ffff;
    border-radius: 12px;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 10px;
    .long{
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
    border-radius: 6px;
    margin-bottom: 10px;
    }
    .card h4, .card p {
    font-size: 14px;
    margin: 5px 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    }
    }
@media (min-width: 769px) {
    header {
        text-align: center;
        
        input {
            width: 500px; 
        }
    }
    .container {
        gap: 2%;            
        padding: 20px;
    }

    .card {
        width: 23.5%;        
        padding: 15px;
    }

    .long{
        max-height: 250px;  
    }

    .card h4 {
        font-size: 20px;   
    }
}
}