:root /* Variables here.*/
{
    --text-color: #161616;
    --border-bottom-color:#292929;
    --background-color:#a5a5a5;
    --page-shadows: rgba(0,0,0,0.2); /*HEX format does not have opacity. Thats why im using RGB instead of hex.*/
    --header-color:#161a1d;
    --header-text-color: white;
}

* /* This will be applied to everything */
{
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    color: var(--text-color);
}

body /* Set background color of page */
{
    background-color: var(--background-color);
}

.header
{
    background-color: var(--header-color); 
    box-shadow: 0 6px 6px var(--page-shadows);
    width: 100%;
    position: fixed;
    z-index: 1;
}

.header h1 /*Logo / website header text*/
{
    color: var(--header-text-color);
    font-size: 60px;
    height: 100%;
    float: left;
    padding-top: 15px;
    padding-left: 20px;
}

.logo { /*logo */
    cursor: pointer;
    margin-right: auto;
    width: 250px;
    padding-left: 50px;
}


.menu-links
{
    padding-right: 100px;
    float: right;
    text-align: center;
    padding-top: 20px;
}

.menu-links a
{

    padding-left: 40px;
    
    font-size: 30px;
    color: var(--header-text-color);
    text-decoration: none;
}

.menu-links a:hover /* When hovering on link. show underline thingie */
{
    text-decoration: underline;
}

.page-img /* scale img tag to intire width of site. Also remove padding on bottom of image caused by resizing. */
{
    width: 100%;
    display: block;

    /* Prevent ghost image (When draging img)*/
    pointer-events: none;
}

.grid-container /* Use grids to align all ze shit */
{
    display: grid;
    grid-template-columns: auto auto auto;
    background-color: white;
    width: 100%;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.grid-container h1 /* Set header as one long boi */
{
    grid-column-start: 1;
    grid-column-end: 4;
    
    border-bottom: 2px solid;
    border-color: var(--text-color);
    border-spacing: 10px 10px;

    margin-left: 100px;
    margin-right: 100px;

    margin-bottom: 50px;
}

.footer /*Create a grid of 4 for the footer. Give width, height and color*/
{
    display: grid;
    grid-template-columns: auto auto auto auto;
    justify-content: stretch;
    background-color: var(--header-color);
    width: 100%;
    height: 200px;
    
}

.footer-row /* create rows of 4 */
{
    
    display: grid;
    grid-template-rows: auto auto auto auto;
    padding-top: 25px;
    text-align:center;
}

.footer-row p
{
    color: white;
}

.footer-row h3
{
    color: white;
}

/* Scrolling locations/offsets */
.homeScroll /*Set scrolling position offset*/
{
    margin-top: -80px;
    padding-bottom: 80px;
    display: block;
}

/* Global tags */
h1
{
    font-size: 80px;
    padding-bottom: 5px;
}

h2
{
    padding-bottom: 5px;
    font-size: 30px;
}

p
{
    font-size: 20px;
}