/* global */

/* #region body */

body {
    background-color: grey;
    margin: 0;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;

    font-family: Arial, Helvetica, sans-serif;

    display: flex;
    flex-direction: column;
    align-items: center;
}

body>* {
    box-sizing: border-box;
    width: 100%;
}

/* #endregion */

/* #region header */

/* header */

header {
    position: relative;

    display: flex;
    justify-content: center;

    background-color: grey;
    padding: 16px;

    min-height: 112px;

    border-bottom: 3px;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-color: black;
    border-style: solid;
}

header>a>img {
    position: absolute;
    left: 16px;
    border-radius: 0.2cm;

    height: 80px;
}

header>nav {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size:x-large;
}

/* #endregion */

/* #region main */

/* main */

main {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 12px;

    max-width: 950px;

    margin: auto 0;
}

main>.text_block {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
    margin-top: 16px;
}

main>.text_block:nth-child(2n) {
    flex-direction: row-reverse;
}

main>.text_block>.text {
    font-size: large;
}

main>.text_block>.text>p {
    text-align: justify;
}

main>.text_block>img {
    max-width: 30%;
    object-fit: contain;
}

/* #endregion */

/* #region footer */

footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: grey;
    padding: 12px;
    gap: 16px;

    border-top: 3px;
    border-bottom: 0px;
    border-left: 0px;
    border-right: 0px;
    border-color: black;
    border-style: solid;
}

/* #endregion */

/* #region links and hr */

header>nav>a, footer>a {
    text-decoration: none;
    color: black;
}

/* #endregion */
