* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary--color : #2c59b6;
}

body {
    overflow-x: hidden;
    font-family: Inter, sans-serif;
}

header {
    height: 10vh;
    /*border-bottom: 1px solid rgba(128, 128, 128, 0.18);*/
    padding: .5rem;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    border-radius: 0 0 1rem 1rem;
}

.head--block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.left--side {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex: 1;
    margin: 0 1rem;
}

.left--side h1 {
    font-family: monospace;
    font-variant: small-caps;
    font-size: 2rem;
    font-weight: 400;
}

.left--picture {
    padding: .5rem;
    width: 40%;
    height: 100%;
    /*box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);*/
    /*border-radius: 1rem;*/
}

.left--picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 1rem;
}

.right--side {

}

.navigation--fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 10vh;
    width: 100vw;
    background: white;
    border-radius: 1rem 1rem 0 0;
    border-top: 1px solid rgba(128, 128, 128, 0.15);
    z-index: 999;
}

.nav--active {
    color: var(--primary--color) !important;
    fill: var(--primary--color) !important;
    stroke: var(--primary--color) !important;
}

.navigation--fixed ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
}

.navigation--fixed ul li {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .2rem;
    color: black;
}

.nav--logo {
    width: 25px;
    height: 25px;
}

.nav--logo g,
.nav--logo path {
    fill: black;
    stroke: black;
}

.navigation--fixed ul li a {
    text-decoration: none;
    color: inherit;
    font-size: .8rem;
    font-weight: 500;
}
