/* Global CSS classes and page properties */

@import url("fonts/volkhov.css");

/* Colours */
:root {
    --text-colour: #5d5d5d;
    --title-colour: #252525;
    --background-colour: white;
    --background-colour-2: #d0d0d0;
    --background-colour-3: #f5f5f5;
}

/* General */

body {
    font-family: "Volkhov", Verdana, serif;

    display: flex;
    padding: 5vh 10vw 1vh 10vw;
    margin: 0;
}

a {
    text-decoration: underline;
}

a:hover {
    color: var(--title-colour);
}

p, a {
    color: var(--text-colour)
}

h1, h2, h3 {
    color: var(--title-colour);
}

h3 {
    margin-bottom: 1vh;
    margin-top: 1vh;
}

code {
    color: var(--background-colour);
}

pre {
    display: flex;
    background-color: var(--text-colour);
    padding-left: 1vw;
    white-space: pre-wrap;
    word-break: break-word;
}

iframe {
    height: 100%;
}

ul {
    font-weight: normal;
    margin-top: .5vh;

}

ul li {
    margin-top: .5vh;
}

/* Classes */

.column {
    flex-direction: column;
}

.row {
    flex-direction: row;
}

.centerer {
    align-items: center;
    justify-content: center;
}

.x-centerer {
    align-items: center;
}

.y-centerer {
    justify-content: center;
}

.accueil {
    margin-top: 5vh;
}

.block {
    display: flex;
}

.block h2 {
    margin-bottom: 0;
}
