@font-face {
    font-family: "Lato-Thin";
    src: url(../fonts/Lato-Thin.ttf);
}

@font-face {
    font-family: "Lato-Light";
    src: url(../fonts/Lato-Light.ttf);
}

@font-face {
    font-family: "Lato-Regular";
    src: url(../fonts/Lato-Regular.ttf);
}

:root {
    --hero-content-height: 80vh;
    --main-color-no-alpha: rgb(60,21,59);
    --main-color: rgba(60,21,59, 0.7);
    --faded-main-color: rgba(60,21,59, 0.4);
    --super-faded-main-color: rgba(60, 21, 59, 0.1);
    --secondary-color: #0d2149;
    --normal-font-size: 20px;
    --big-font-size: 2rem;
    --huge-font-size: 4rem;
    --small-padding: 5px;
    --medium-padding: 15px;
    --normal-padding: 30px;
    --very-big-padding: 100px;
    --normal-font-weight: 300;
    --light-font-weight: 100;
}

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

html {
    overflow: auto;
    overflow-x: hidden;
}

body {
    color: #333;
    font-size: var(--normal-font-size);
    font-family: "Lato-Light", sans-serif;
    font-weight: var(--normal-font-weight);
    font-style: normal;
    padding: 20px;
}

p {
    padding: var(--medium-padding) var(--normal-padding);
    max-width: 60rem;
    text-align: justify;
    text-justify: auto;
    line-height: 140%;
}

ul {
    padding: var(--normal-padding) var(--very-big-padding);
}

a {
    text-decoration: none;
    color: #333;
    font-size: 20px;
}

a.back {
    border: var(--main-color);
    text-decoration: underline;
    padding: var(--normal-padding);
}

h1, h2 {
    font-family: "Lato-Regular";
    font-size: var(--big-font-size);
    width: fit-content;
    max-width: 60rem;
    margin: var(--medium-padding);
    padding: var(--medium-padding);
    color: gray;
    font-weight: bolder;
}

h1 {
    color: #333;
    border: solid 3px var(--faded-main-color);
    border-radius: 20px;
    margin-bottom: 70px;
}

h2::after {
    content: '';
    display: block;
    width: 100%;
    margin-right: -100%;
    border-bottom: 3px solid var(--faded-main-color);
}