@import url('https://fonts.googleapis.com/css?family=Rubik&display=swap');

* {
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    align-items: center;
    padding: 10px 0 10px 0;
    background-color: rgb(0, 0, 0);
    height: 100px;
}

header div {
    width: 100px;
}

header div img {
    width: 100%;
    display: block;

}

nav {
    width: 60%;
    display: flex;
    padding: 5px;
    height: 80px;

    align-items: center;
    justify-content: center;
    color: white;
}

nav a {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 1.3rem;
    color: white;
}

body {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    background-color: white;
    font-family: 'Rubik', sans-serif;

}

#container {

    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
}

#introduction {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 200px;
    align-items: center;
    background-color: #22264C;

}

#introduction h1 {
    width: 50%;
    color: white;
    text-align: center;
}

#introduction p {
    background-color: #312517;
    width: 100%;
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
    padding-left: 10px;

}

#prix {
    background-image: url("../images/prix.jpg");
    display: flex;
    align-items: flex-end;
    flex-direction: row;
    width: 50%;
    height: 100%;
}

article {
    height: 300px;
    flex: 20%;
}

h2 {
    background-color: rgba(0, 0, 0, 0.5);
    font-size: 1.2rem;
    padding: 10px;
    margin: 0px;
    color: white;
}

p {
    padding: 2px;
    margin: 0px;
    font-size: .9rem;
    background-color: rgba(255, 140, 0, 0.4);
}

#les-villes {
    display: flex;
    flex-direction: row;
    width: 100%;
}

#ste-croix {
    background: url('../images/ste-croix.jpg') center no-repeat;
    background-size: cover;
}

#moudon {
    background: url('../images/moudon.jpg') center no-repeat;
    background-size: cover;
}

#lausanne {
    background: url('../images/lausanne.jpg') center no-repeat;
    background-size: cover;
}

#orbe {
    background: url('../images/orbe.png') center no-repeat;
    background-size: cover;
}

#montreux {
    background: url('../images/montreux.jpg') center no-repeat;
    background-size: cover;

}

#ville-semaine {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    width: 100%;

}

#ville-semaine-titre {

    width: 60%;
    color: white;
    text-align: center;
    align-items: center;

    background: url('../images/ste-croix.jpg') center no-repeat;
    background-size: cover;

}

#ville-semaine-explication {
    width: 40%;

}

#ville-semaine-explication h2 {
    background-color: white;
    color: rgb(0, 0, 93);
}

#ville-semaine-explication p {
    background-color: rgb(0, 0, 93);
    color: white;
    padding: 10px;
}

#concours {
    display: flex;
    flex-direction: row;
    flex: 100%;

}

#concours-titres {
    background-color: #3F0D22;
    color: white;
    width: 20%;
    align-content: flex-end;
}

#concours-titres h3 {
    background-color: #22264C;
    color: white;
    text-align: center;
    padding: 10px;
}

#concours-titres p {
    color: white;
    text-align: center;
    padding: 10px;
}

#concours-slogan {
    background-color: #3F0D22;
    color: white;
    padding: 10px;
    flex: 20%;
    align-content: flex-end;
}

#concours-texte1 {
    background-color: rgb(34, 68, 131);
    color: white;
    padding: 10px;
    flex: 30%;
}

#concours-texte2 {
    background-color: rgb(0, 0, 55);
    color: white;
    padding: 10px;
    flex: 30%;
}

#participer {
    flex: 20%;
    background-color: rgb(0, 0, 33);
    color: white;
    padding: 50px 10px 10px 10px;
    text-align: center;
    font-size: 20px;
}