html, body
{
    margin: 0;
    padding: 0;
    font-family: arial;
}
*
{
    box-sizing: border-box;
}
#hello
{
    background-image: url("../pictures/hello.jpg");
    background-size: cover;
    height: 500px;
}
header
{
    padding: 30px;
}
header #logo
{
    height: 50px;
}
h1
{
    color: white;
    text-align: center;
    font-size: 2.9em;
    font-weight: 400;
    margin-bottom: 10px;
}
h2
{
    color: white;
    text-align: center;
    font-weight: 500;
}
form
{
    text-align: center;
    margin-top: 30px;
}
input:first-child
{
    border-radius: 3px;
    box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.4);
    padding: 17px 30px;
    border: none;
    width: 50%;
    font-size: 1.3em;
}
input:last-child
{
    cursor: pointer;
    padding: 17px 30px;
    font-size: 1.3em;
    border: none;
    border-radius: 3px;
    background: #e78200;
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.4);
}

.container
{
    width: 1100px;
    margin: 0 auto;
}

.center
{
    text-align: center;
}
#result
{
    color: white;
    margin: 20px;
    border: solid white 1px;
    border-radius: 10px;
    padding: 30px;
    display: inline-block;
}


#brands
{
    background-color: #e1f7e1;
    padding: 30px;
    text-align: center;
    height: 250px;
}
h3
{
    margin: 0;
    color: #e78200;
    padding-top: 20px;
    padding-bottom: 40px;
    
}


.picture
{
    height: 35px;
    margin: 15px;
}

footer
{
    text-align: center;
    padding: 30px;
    font-size: 0.9em;
}
footer #logo
{
    height: 30px;
    margin: 10px;
}
a
{
    color: #e78200;
    font-weight: bold;
    text-decoration: none;
}
