@charset "utf-8";

/* -------------------------------
   CSS pour site web
   Aïkido Paris XV la Plaine
------------------------------- */

:root {
    /* palette de couleurs de base */
    --rouge-akai: #b23733ff;
    --rouge-iro: #c6363dff;
    --bleu-aoi: #2a5676ff;
    --bleu: var(--bleu-aoi);
    --rouge: var(--rouge-iro);
}

* {
    font-style: normal;
    text-decoration: none;
    line-height: normal;
    font-weight: normal;
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
}

html {
    display: block;
    width: 100%;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    align-items: center;
    justify-content: center;
    font-family: Georgia, serif;
    color: white;
    font-size: 16pt;
    background-color: var(--bleu);
}

#titre {
    display: block;
    text-align: center;
}

#titre h1 {
    padding: 0.4em;
    border-bottom: 1px solid white;
}

#titre h2 {
    margin-top: 1em;
    font-family: Helvetica, Arial, sans-serif !important;
    text-transform: uppercase;
    font-size: 0.9em;
}

#cartouche {
    display: block;
    margin-top: 1em;
    width: 3em;
    aspect-ratio: 1 / 3;
    background-image: url(images/aikido.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}
