body {
    background-color: rgb(180, 240, 240);
    background-image: url('../assets/background.png');
    background-size: cover;
	min-height: 100vh;
}

form {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 5px 5px 10px grey;
    margin-bottom: 20px;
}

form span.text-fra {
    font-style: italic;
    margin-left: 10px;
}

#submit {
    max-width: 60%;
    margin-top: 15px;
}

.shop-list {
    margin-bottom: 50px;
}

.shop-list .shop-caption {
    font-size: 2rem;
    font-weight: 500;
    text-align: right;
}

.shop-list .shop-item {
    margin-bottom: 10px;
}

#offerte {
    background-color: #2778b3;
    border-radius: 15px;
    font-size: 2.5rem;
    font-weight: 400;
    color: #fff;
    font-variant: small-caps;
    padding: 10px;
    margin: 30px 0;
}

a {
    text-decoration: none;
}

#offerte a {
    color: #fff;
}
#offerte p {
    line-height: 1;
}

p.text-ita {
    font-weight: 600;
    margin-bottom: 0;
}

p.text-fra {
    font-style: italic;
    font-size: 1.8rem;
}

footer {
    background-color: rgb(0 159 222 / 30%);
    padding: 20px;
    margin-bottom: 50px;
    font-size: 1.5rem;
}

footer a {
    color: #000;
}


@media (max-width: 768px) {
    .shop-caption{
        text-align: center!important;
        margin-bottom: 15px;
    }
    #logo {
        text-align: center;
    }
}

@media (min-height: 900px) and (min-width: 1200px) {
    footer {
        position: absolute;
        bottom: 0;
        width: 100%;
    }
    #logo {
        margin-bottom:200px;
        
    }
}

@media (min-width: 768px) {
    body {
        margin-top: 100px;
    }

    #offerte {
        float:right;
        text-align: right;
    }

}