
.body {
    margin: 0;
}

h1, h4, p, a {
    font-family: "Lancelot", serif;
    font-style: normal;
}

.header h1 {
    font-size: 2.5rem;
    margin: 10px;
}

.header {
    display: flex;
    justify-content: space-between;
    margin: 20px 10px;
}

.nav-bar {
    display: flex;
    align-self: center;
    flex-wrap: wrap;
}

.home-button {
    color: black;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    background-color: lightgray;
    border: 3px transparent solid;
    border-radius: 10px;    
    text-wrap: nowrap;
}

.search-icon {
    margin-top: -5px;
    height: 50px;
    width: 55px;
}

.card-row {
    display:flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.card-1 {
    max-width: 400px;
    min-width: 200px;
    border: 2px solid black;
    margin: 30px 10px;
}

.card-img-1 {
    background-image: url("../images/cremeBrulee.png");
    height: 400px;
    background-size: cover;
}

.card-img-2 {
    background-image: url("../images/macarons.jpg");
    height: 400px;
    background-size: cover;
}

.card-img-3 {
    background-image: url("../images/millefuille.jpg");
    height: 400px;
    background-size: cover;
}

.banner {
    font-size: 1.1rem;
    color: black;
    width: 150px;
    background-color: rgb(76, 168, 244);
    margin: 0;
    float: right;   
    padding: 5px 10px;
    text-align: center;
    margin-top: 15px;
}

.description {
    padding: 10px;
    height: 200px;
}

.description h1 {
    font-size: 2.5rem;
    margin: 0;
}

.description p {
    font-size: 1.1rem;
}

.decor-button {
    color: black;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    background-color: lightgray;
    margin: 5px;
    border: 3px transparent solid;
    border-radius: 10px;
}

a:hover {
    color: black;
    border: 3px darkgray solid;
}

a:active {
    color: black;
    background-color: darkgray;
}

a:visited {
    color: black;
}

.rating {
    width: 20%;
}

.buttons {
    display:flex;
    justify-content: flex-end;
}

.button-1 {
    margin-right: 5%;
}

.button-1, .button-2 {
    width: 100px;
    height: 50px;
    background-color: lightgray;
}

footer {
    display: flex;
    justify-content: space-between;
    margin: 20px;
    font-size: 1.1rem;
}



