* {
    margin: 0;
    box-sizing: border-box;
    padding: 10px;
    font-family: 'Lora', serif;
    
}

/* Header */
header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

header > h1 {
    text-align: center;
    border-bottom: 1px solid black;
    width: 600px;
}

/* Section */
 .container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    /* border: 2px solid black;   */
    width: 80%;  
    margin: 0 auto;
}

.container > div {
    margin: 10px;
    width: 30%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: bisque;
    border-radius: 25px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
}



.container > div > img {
    width: 100%;
    max-height: 300px;
    height: auto;
    border-radius: 25px;
   
}




