body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

header {
    background: #35424a;
    color: #ffffff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #e8491d 3px solid;
}

header a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header ul {
    padding: 0;
    list-style: none;
}

header li {
    display: inline;
    padding: 0 20px 0 20px;
}

header nav {
    float: right;
    margin-top: 10px;
}

header h1 {
    float: left;
}

main {
    padding: 20px 0;
}

section {
    padding: 20px 0;
    border-bottom: 1px solid #cccccc;
}

section:last-of-type {
    border-bottom: none;
}

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

.gallery img {
    width: 30%;
    border: 2px solid #ddd;
    border-radius: 4px;
    padding: 5px;
}

footer {
    background: #35424a;
    color: #ffffff;
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
}

footer a {
    color: #e8491d;
    text-decoration: none;
}