:root {
    --bg-color: #121212;
    --nav-bg: #1a1a1a;
    --fg-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
}

body {
    background-image: url('../images/bg_home.png');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    transition: background-position 0.1s ease-out;
    color: var(--fg-color);
    font-family: Arial, 'Roboto', 'Helvetica Neue', 'San Francisco', sans-serif;
    user-select: none;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: var(--nav-bg);
}

nav {
    display: flex;
    justify-content: center;
}

nav a {
    padding: 1rem;
    text-align: center;
    font-size: 1rem;
    font-family: Arial, 'Roboto', 'Helvetica Neue', 'San Francisco', sans-serif;

    color: var(--fg-color);
    text-decoration: none;
}

nav a:hover {
    background: #333333;
}

main {
    text-align: center;
}

main h1 {
    margin-top: 180px;
    font-size: 70px;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 1);
    font-family: Arial, 'Roboto', 'Helvetica Neue', 'San Francisco', sans-serif;
}

main h2 {
    margin-top: 110px;
    font-size: 70px;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 1);
    font-family: Arial, 'Roboto', 'Helvetica Neue', 'San Francisco', sans-serif;
}

main h3 {
    margin-top: 90px;
    font-size: 50px;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 1);
    font-family: Arial, 'Roboto', 'Helvetica Neue', 'San Francisco', sans-serif;
}

main h4 {
    font-family: Arial, 'Roboto', 'Helvetica Neue', 'San Francisco', sans-serif;
}

main p {
    margin-top: -6px;
    margin-bottom: 130px;
    font-size: 19px;
    color: #cccccc;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 1);
    font-family: Arial, 'Roboto', 'Helvetica Neue', 'San Francisco', sans-serif;
}

.site-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: var(--nav-bg);
    color: var(--fg-color);
    padding: 0.8rem;
    text-align: center;
    z-index: 100;
}

.social-link--discord {
    margin-right: 64px; 
    text-decoration: none;
}

.social-link--youtube {
    text-decoration: none;
}

.social-link--github {
    margin-left: 71px; 
    text-decoration: none;
}

.social-link--discord img {
    width:110px; 
    height:auto;
}

.social-link--youtube img {
    width:100px; 
    height:auto;
}

.social-link--github img {
    width: 77px; 
    height: auto;
}

.site-footer__copyright {
    font-size: 0.8rem; 
    margin-top: 4px; 
    margin-bottom: -10px;
    color: #bbbbbb;
}

.spacer {
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 1);
    font-family: Arial, 'Roboto', 'Helvetica Neue', 'San Francisco', sans-serif;
}

.spacer--veryshort {
    height: 100px;
}

.spacer--short {
    height: 200px;
}

.spacer--middle {
    height: 300px;
}

.spacer--long {
    height: 400px;
}

@media (max-width: 1199px) and (min-width: 768px) {
    
}

@media (max-width: 768px) {
    nav a {
        font-size: 0.8rem;
    }

    main h1 {
        margin-top: 110px;
        font-size: 50px;
    }

    main h2 {
        margin-top: 80px;
        font-size: 50px;
    }

    main h3 {
        margin-top: 70px;
        font-size: 30px;
    }
    
    main p {
        margin-top: -6px;
        margin-bottom: 70px;
        font-size: 13px;
    }

    .social-link--discord {
        margin-right: 25px; 
    }
    
    .social-link--github {
        margin-left: 27px; 
    }

    .site-footer__copyright {
        font-size: 0.65rem; 
        margin-top: 4px; 
        margin-bottom: -10px;
        color: #bbbbbb;
    }
}