/* reset */
* {
    margin: 0;
    padding: 0;
}
body {
    padding: 100px;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
}
/* titre */
.titre {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    font-size: 1.5rem;
    margin-bottom: 3rem;
}
.titre h2 {
    margin-right: 0.5rem;
}
.titre span {
    height: 2px;
    background-color: #ddd;
    width: 100%;
}
.titre i {
    margin-left: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 50%;
    padding: 1rem;
}

/* breakfast */
.breakfast {
    width: 100%;
    height: 350px;
    /* background-color: #aaa; */
    background: linear-gradient(#0007, #000b), url("../img/morocco-breakfast.jpeg") center top;
    border-radius: .5rem;

    display: flex;
    align-items: center;
    justify-content: center;
}
.breakfast h2 {
    color: #fff;
    font-size: 3rem;
    text-shadow: 0 2px 2px #333;
}