.search {
    width: max-content;
    display: flex;
    align-items: center;
    padding: 14px;
    border-radius: 28px;
    background-color: #f6f6f6;
    width: 96%;
    
}

.search-input {
    border: none;
    outline: none;
    background-color: transparent;
    color: #333;
    font-size: 16px;
    margin-left: var(--padding);
    flex: auto;
}

.search-input::placeholder {
    color: rgba(0, 0, 0, 0.25);
}

h1{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #2d3748;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

img {
    width: 30%;
    height: auto;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
}

#response {
    margin-top: 20px;
    width: 600px;
    max-width: 90%;
    padding: 20px;
    border-radius: 10px;
    background: #b8b8b8;
    color: white;
    min-height: 100px;
    
}