@import "/styles/colors.css";

@font-face {
    font-family: Noto;
    font-weight: lighter;
    src: url("/assets/fonts/Noto/NotoSans-Light.ttf") format('truetype');
}
@font-face {
    font-family: Noto;
    font-weight: bolder;
    src: url("/assets/fonts/Noto/NotoSans-Bold.ttf") format('truetype');
}
@font-face {
    font-family: Noto;
    font-weight: bold;
    src: url("/assets/fonts/Noto/NotoSans-SemiBold.ttf") format('truetype');
}
@font-face {
    font-family: Noto;
    font-weight: normal;
    src: url("/assets/fonts/Noto/NotoSans-Regular.ttf") format('truetype');
}

:root {
    --max-width: 1280px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Noto, 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

html {
	opacity: 0;
    font-size: 16px;
	scroll-behavior: smooth;
	transition: opacity 125ms 250ms;
}

body {
    color: var(--color-text-dark);
    padding: 0;
    margin: 0;
}

a {
    color: var(--color-main);
}

.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;
}