/* global */

/* #region body */

body {
    background-image: url('/assets/main-site/only-about-me/miltor-mit-logo.jpeg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: 50%;
    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;
}

header>#extra>img {
    height: 80px;
    right: 16px;
    border-radius: 0.2cm;
    position: absolute;
}

/* #endregion */

/* #region main */

/* main */

main {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 32px;
    padding: 12px;
    text-align: center;
    margin: auto 0;
    background-color: rgba(128, 128, 128, 0.746);
    border-color: black;
    border-radius: 32px;
    border-style: solid;
    max-width: 600px;

}

/* #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);
}

hr {
    border:solid #000000 0.5px;
    width: 75%;
}
/* #endregion */
