* {
    padding: 0 25px;
    background-color: rgb(244, 249, 253);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 15vh;
}

img {
    width: 45%;
}

.search {
    width: 90%;
}

#search {
    width: 90%;
    height: 40px;
    margin-top: 20px;
    border: 1px solid #cacccf;
    border-radius: 24px;
    padding-left: 15px;
    font-size: 19px;
    outline: none;
}

#search:focus {
    /*when the input field is focused*/
    box-shadow: 0 0 5px rgba(81, 203, 238, 1);
    border: 1px solid rgba(81, 203, 238, 1);
}

@media screen and (max-width:780px) {
    .container {
        margin-top: 20vh;
    }

    img {
        width: 90%;
    }

    #search {
        width: 100%;
        margin-top: 6vh;
    }
}