/*========== header ==========*/
header{
    background-color: red;
} 
/*========== condition commune ==========*/
body section{
    margin: 20px 60px;
    padding: 5px 10px 0 10px;
    border-radius: 20px;
}
body ul, body ol{
    display: flex;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    padding-block: 35px;
    margin: 0;
}
body li{
    position: relative;
    text-align: center;
    background-color: #7a3e3a;
    padding: 8px;
    margin: 10px;
    border: 1px solid white;
    border-radius: 5px;
}
body a:hover{
    background-color: rgba(255, 255, 255, 0.3);
    text-decoration: underline;
}
body img{
    width: 100%;
    object-fit: cover;
    
}
body h1, body h2, body h3, body p, body strong, body a{
    color: black;
    font-family: "Lucida calligraphy";
    text-align: center;
}
section main h1, section main h2, section main p, section main strong, body a{
    color: white;
}
body a{
    font-weight: bold;
    text-decoration: none;
}
/*========== banner ==========*/
main > div div {
    text-shadow: 2px 2px 5px black;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/*========== section variétés de fraises ==========*/
div + section {
    background-color: red;
}
div + section ul{
    justify-content: space-around;
    list-style-type: none;
    padding: 5px 20px 10px 20px;
}
div + section li{
    width: 25%;
    color: white;
    font-size:large;
    border-radius: 5px;
}
/*========== section taille des fraises ==========*/
main section:last-child{
    border: 2px solid red;
}
main section:last-child img{
    height: 300px;
}
main section:last-child strong{
    color: black;
}
main section:last-child ol{
    justify-content: space-around;
}
main section:last-child ol strong{
    position: absolute;
    color: black;
    top: 10px;
    left: 10px;
    margin: 0;
    background: rgba(255, 255, 255, 0.6);
    padding: 5px 10px;
    border-radius: 5px;
}
main section:last-child p {
    margin: 0;
    padding: 10px;
    background: red;
    font-size: 14px;
}
/*========== Footer ===========*/
footer {
    background-color: #7a3e3a;
    text-align: center;
    padding: 1rem;
}
footer a, footer p{
    color: #f2cfcf;
    font-size: 12px;
}
/*========== Mise en page Footer ===========*/
html, body {
  height: 100%;
  margin: 0;
}
body {
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
}
/*========== formulaire de contact ==========*/
form {
    text-align: center;
}
/*========== Tableau variétés des fraises ==========*/
table{
    background-color: red;
    margin: 0 auto;
    margin-top: 15%;
    padding: 10px;
    text-align: center;
}

th{
    padding: 10px;
    margin: 0%;
    border: 1px solid black;
}