* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

header,
header h1,
section h2,
section h3,
button {
    font-family: "Bebas Neue", sans-serif;
    font-weight: normal;
}

body, 
input, 
textarea,
footer p {
    font-family: 'Roboto', sans-serif;
}

header {
    background-color: #631818;
    padding: 16px 0;
    color: #ecf0f1;
}

header nav li {
    display: inline;
    margin-left: 16px;
    font-size: 18px;
}

header nav li a{
    color: #ecf0f1;
    text-decoration: none;
}



.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

header .container, 
section .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brands-list img {
    height: 90px;
}

.brands-list li {
    display: inline;
}

section .container {
    align-items: flex-start;
}

section {
    padding: 24px 0;
    color: #631818;
}

section h2 {
    margin-bottom: 16px;
}

section p {
    margin-bottom: 8px;
}

.porscheimg{
    width: 50%;
    margin-right: 32px;
}

footer {
    background-color: #631818;
    color: #ecf0f1;
    padding: 16px 0;
}

.social-links img {
    height: 24px;
}

.social-links li {
    display: inline;
    margin-right: 8px;
}

.social-links li a {
    text-decoration: none;
}

#contact .container {
    display: block;
}

.contact-methods {
    display: flex;
    justify-content: space-between;
}

form input,
form textarea, 
form button {
    display: block;
    width: 320px;
    margin-bottom: 8px;
    padding: 18px;
}

form textarea {
    resize: none;
    height: 180px;
}

section h3 {
    margin-bottom: 16px;
}

form button {
    background-color: #631818;
    color: #ecf0f1;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #972525;
}

input:focus, textarea:focus {
    outline-color: #631818;
}