/* 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 {
    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;
    text-align: center;
    align-items: center;
    width: 100%;

    margin: auto 0;
}

main>button {
    width: 50px;
    height: 40px;
    background-color: lightgrey;

    border-radius: 9px;
    border-width: 3px;
}

main>input {
    width: 150px;
    height: 30px;
    font-size: 16px;
    background-color: lightgrey;

    border-radius: 9px;
    border-width: 3px;
}

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

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 */

header>nav>a, footer>a {
    text-decoration: none;
    color: rgb(0, 0, 0);
}
/* #endregion */
