@import "/styles/colors.css";

@font-face {
    font-family: Roboto;
    font-weight: bold;
    src: url("/assets/fonts/Roboto-Bold.ttf") format('truetype');
}
@font-face {
    font-family: Roboto;
    font-weight: normal;
    src: url("/assets/fonts/Roboto-Regular.ttf") format('truetype');
}
@font-face {
    font-family: OpenSans;
    font-weight: bold;
    src: url("/assets/fonts/OpenSans-Bold.ttf") format('truetype');
}
@font-face {
    font-family: OpenSans;
    font-weight: normal;
    src: url("/assets/fonts/OpenSans-Regular.ttf") format('truetype');
}

:root {
    --max-width: 1200px;
}

html {
    opacity: 0;
    font-size: 16px;
    scroll-behavior: smooth;
    transition: opacity 125ms 250ms;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: OpenSans, 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

body {
    color: var(--color-text-dark);
    padding: 0;
    margin: 0;   
}

a {
    color: var(--color-main-2);
}

img {
    /*display: block;*/
}

.main-container {
    display: flex;
    flex-direction: column;
}

.page-content {
    width: 100%;
    max-width: var(--max-width);
    margin: auto;
    padding: 4rem 1rem;
    line-height: 1.5;
}
.page-content p {
    padding-bottom: 1.5rem;
}

h1, h2 {
    font-family: Roboto;
}