body {
    padding: 0;
    line-height: 1.4;
    margin: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}


header {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

@media screen and (min-width: 600px) {
    header {
        align-items: flex-end;
        flex-direction: row;
        justify-content: space-between;
        padding: 30px;
        word-spacing: 10px;
    }
}

.logo {
    display: flex;
    justify-content: center;
}

#hero {
    margin-bottom: 48px;
    width: 100%;
    height: 200px;
}

#hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (min-width: 800px) {
    #hero {
        height: 600px;
    }
}

nav li {
    display: flex;
    justify-content: center;
}

nav li a {
    color: #5b3513;
    display: block;
    text-decoration: none;
}

@media screen and (min-width: 600px) {
    nav ul {
        display: flex;
        gap: 8px;
    }
}

footer ul,
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer ul {
    display: flex;
    justify-content: center;
    gap: 16px;
}

footer ul li a,
nav ul li a {
    align-items: center;
    display: flex;
    flex-direction: column;
    color: #5b3513;
    margin-top: 25px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    font-weight: 700;
    text-decoration: none;
}


section {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}

.product-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.product-list a {
    color: #5b3513;
    display: inline-block;
    font-weight: 700;
    text-decoration: none;
}

.video {
    height: 300px;
    max-width: 500px;
    width: 100%;
}

.image-photo {
    margin-top: 60px;
    height: auto;
    max-width: 1005px;
    width: 100%;
}

.image-portrait {
    height: auto;
    max-width: 340px;
    width: 100%;
}


@media screen and (min-width: 600px) {
    .image-text {
        align-items: center;
        display: flex;
        gap: 32px;
    }
}

footer {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

@media screen and (min-width: 600px) {
    footer {
        align-items: flex-end;
        flex-direction: row;
        justify-content: space-between;
        padding: 0 16px;
        box-sizing: border-box;
    }
}