@charset "UTF-8";

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}

body{
    margin: 10px auto;

}

.header{
    height: 550px;
    background: url(/img/02.jpg) no-repeat;
    background-size: 150%;
    background-position: 1% 35% ;
    padding: 137px 50px;
    text-align: center;
}
header{
    width: 450px;
    background-color: #f8f6f0;
    margin: 0 auto;
    padding: 30px 20px;
    position: absolute;

}

h1{
    font-size: 30px;
    margin-bottom: 20px;
}

section{
    max-width: 900px;
    margin: 80px auto;
    padding: 20px;
    border-radius: 5px;
}

section h2{
    margin-bottom: 50px;
    text-align: center;
}

section h3{
    margin-bottom: 15px;
}

section p{
    margin-bottom: 20px;
    width: 400px;
}

.wrapper{
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.imgbox{
    width: 300px;
    height: 200px;
    overflow: hidden;
}

section img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.imgbox--husky img{
object-position: 10% 25%;
display: block;
}



footer{
    text-align: center;
    padding: 20px;
    background-color: #f1e7b4;
    margin-top: 20px;
}