*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body{
    height: 100%;
}
body{
    background-image: url('../img/backgroundImg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    
    color: #fff;

    min-height: 100vh;

    display: flex;
    flex-direction: column;
}
header{
    display: flex;
    justify-content: center;
}
header img{
    width: 60%;
    height: 100%;
}
main{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact {
    margin: 1rem;
    color: #664c19;
    text-align: center;
}

.seller {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;

    margin-bottom: 1.5rem;
    text-decoration: none;
    color: #e29f19;
    background-color: #ffffff;
}

.seller img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #cb9731;
}

.seller span {
    font-weight: bold;
    text-transform: uppercase;
}

.container{
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-maps {
  display: inline-block;
  padding: 12px 20px;
  background-color: #cb9731;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.btn-maps:hover {
  background-color: #e9ae38;
}
footer{
    color: #cb9731;
   text-align: center;
}

@media (min-width: 720px) {
     body {
        padding: 2rem;
        background-size: contain;
        background-position: right center;
        background-color: #f2f2f2;
    }
    header{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .contact {
        max-width: 320px;
    }

    .seller img {
        width: 72px;
        height: 72px;
    }
}


