/* global */

/* #region body */

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

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

    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url("assets/main-site/only-main/bgforme.png");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: 50%;
}

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

/* #endregion */

/* #region header */

/* header */

header{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 16px;
    margin-top: auto;
}

header>img {
    width: 350px;
    max-width: 50%;
    border-radius: 1cm;
}

/* #endregion */

/* #region main */

/* main */
main>nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px;
    gap: 32px;
}

main>nav>a {
    transition: all 400ms ease-in-out;
    text-decoration: none;
    border: 0.2cm;
    border-color: black;
    border-style: solid;
    border-radius: 0.5cm;
    padding: 0.2cm;
    width: 2.5cm;
    height: 2.5cm;
    text-align: center;
    display: flex;
    justify-content: center;
}

main>nav>a:hover {
    width: 3cm;
    height: 3cm;
}


/* #endregion */

/* #region footer */

footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    padding-bottom: 10px;
    margin-top: auto;
}
footer>a {
    text-decoration: none;
    color: black;
}

/* #endregion */

/* #region links */

/* #endregion */
