@import url(/assets/css/css-reset.css);
@import url(/assets/css/header.css);
@import url(/assets/css/home.css);
@import url(/assets/css/projects.css);

/* here start the custom css */

@font-face {
    font-family: OrticaAngular;
    src: url(/assets/fonts/OrticaAngular-Bold.woff2);
}

@font-face {
    font-family: Feroniapi;
    src: url(/assets/fonts/Feroniapi-MediumItalic.woff2);
}

@font-face {
    font-family: Karrik;
    src: url(/assets/fonts/Karrik-Regular.woff2);
}

/* color variables */

:root {
    --maleza-red: #842821;
}

/* basic elements */

body {
    font-family: Feroniapi;
    font-size: 1.15rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: OrticaAngular;
}

h1 {
    font-size: 3rem;
    margin-top: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h4 {
    margin-bottom: 1rem;
}

a {
    color: var(--maleza-red);
}

section p, article p {
    /* font-size: 1.3rem; */
    margin-bottom: 1rem;
}

strong {
    color: var(--maleza-red);
}

hr {
    margin: 1rem 0;
    border-style: solid;
    border-width: 0.1rem;
    border-color: var(--maleza-red);
}

/* container rules */

div.container {
    max-width: 44rem;
    margin: auto;
    padding: 0 2rem;
}

/* bg illustration */

div.bg-illustration {
    position: absolute;
    width: 100vw;
    top: -5vw;
    z-index: -10;
}

.bgroot {
    /* width: 50rem; */
    fill: var(--maleza-red);
    opacity: 35%;
}

/* footer */

footer {
    margin-top: 4rem;
    padding-bottom: 2rem;
}

.footer-row {
    display: flex;
    justify-content: space-between;
}

.footer-element:last-child {
    text-align: right;
}