/*
Nicolas Fleurent
Laboratoire sur les tableaux
2022-10-20
*/

/*J'ai pris ma police sur squirrel : https://www.fontsquirrel.com/ */
@font-face{
    font-family: Kaushan;
    src: url(KaushanScript-Regular.otf);
}

h1{
    text-align: center;
    color: black;
    text-shadow: 2px 2px 5px brown;
    font-family: Kaushan;
    border-bottom: 5px brown dashed;
    font-size: 3em;
}

p{
    font-size: 20px;
}

h2{
    text-align: center;
}

table{
    border: 5px brown;
    border-style: ridge;
    border-collapse: collapse;
}

th, td{
    border: 1px solid black;
    padding: 5px;
    text-align: center;
}

tr:nth-child(odd){
    background-color: lightcoral;
}

div{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 25px;
    border: lightcoral ridge 5px;
}

span{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

img{
    float: right;
    width: 250px;
    border-radius: 25px;
}

