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

header {
    padding: 16px;
    background-color: #192c61;
    color: #ecf0f1;
}
header  , section h2 , section h3{
    font-family: 'Bungee', cursive;
    font-weight: normal;
}
header h1 {
  font-weight: normal;
}
body, input, textarea {
    font-family: 'Roboto', sans-serif;
}
header nav li {
    display: inline;
    margin-left: 16px;
    
}
header nav li a {
    text-decoration: none;
    color: #ecf0f1;
    font-size: 18px;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
header .container, section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brands-list img {
    height: 24px;
}

.brands-list li {
    display: inline;
    margin-right: 8px;
}
section .container {
    align-items: flex-start;
}
section {
    color: #182c61;
}

section h2 {
 margin-bottom: 16px;
 color: #182c61;
}
section p {
    margin-bottom: 8px;
}
.store-front {
    margin-right: 32px;
}

.social-links  img  {
     height: 24px;
}
.social-links li {
    display: inline;
}
#contact .container {
    display: block;
    justify-content: space-between;
}
.contact-methods {
 display: flex;
}

form input,form textarea, form button {
    display: block;
    width: 320px;
    margin-bottom: 8px;
    padding: 8px;
}
section h3 {
    margin-bottom: 16px;
}
form button {
    background-color: #182c61;
    color: #fff;
    border: none;
    cursor:pointer;
}
form button:hover {
background-color: #314e9e;
}
input:focus,  textarea:focus {
    outline-color: invert;
}
form textarea {
    resize: none;
}

