* {
    padding: 0;
    margin: 0;
}

/** FONTS */
@font-face {
    font-family: 'Header-Text';
    src: url('../fonts/Lovelo-Black.otf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Text';
    src: url('../fonts/Lora-Medium.ttf');
}

@font-face {
    font-family: 'my_txt';
    src: url('../fonts/SinkinSans-Regular.otf');
}

@font-face {
    font-family: 'body';
    src: url('../fonts/Google-Sans-Regular.ttf');
}

@font-face {
    font-family: 'Page';
    src: url('../fonts/PlusJakartaSans-Medium.ttf');
}

@font-face {
    font-family: 'Body Bold';
    src: url('../fonts/Google-Sans-Bold.ttf');
}

@font-face {
    font-family: 'Page Bold';
    src: url('../fonts/PlusJakartaSans-ExtraBold.ttf');
}

/** HEADERS */
h1 {
    font-size: 5em;
    color: rgba(0,0,0, 0.1);
    /*padding-top: 100px;*/
    /*vertical-align: center;*/
}

/** PAGE STRUCTURE*/
body {
    margin: 0;
    font-family: 'body';
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header{
    /*position: relative;*/
}

header h1 {
    font-family: 'Header-Text';
    /*display: inline-block;
    transform: rotate(-90deg);
    transform-origin: bottom left;*/
}

main {
    flex: 1;
    width: 80%;
    margin: 0 auto;
}

footer {
    /*position: relative;*/
    font-family: 'page';
    font-size: 0.6em;
    height: 10%;
}

.left-side {
    position: fixed;
    left: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    white-space: nowrap;
    font-family: 'Header-Text';
}

/** LINKS */
a {
    font-family: 'body bold';
}

/** HEADER NAVIGATION */
.header-nav {
    margin: 100px;
}

.header-nav ul {
    list-style: none;
}

.header-nav ul li {
    display: inline;
    margin-left: 36px;
}

nav div {
    margin-top: 100px;
}

/** FOOTER NAVIGATION */
.footer-nav {
    margin: 20px;
}

.footer-nav ul {
    list-style-type: none;
}

.footer-nav ul li {
    display: inline;
    margin-left: 18px;
}

/** TEXT CLASSES */
.text-3 {
    font-size: 3em;
    font-weight: 900;
}

.grclink {
    text-decoration: none;
    color: rgba(0, 0 ,0, 0.6);
}

.line-pre-footer {
    width: 255px;
    text-align: center;
    color: rgba(0,0,0,0.4);
}