/*
-----Table of contents-----
1. DIV ATTRIBUTES
2. FONTS & TEXT
3. ANCHORS
*/

body {
    font-family: 'Open Sans', sans-serif;
    position: relative;
    background-image: url('./imgs/asfalt--light--1920x1080.png');
    background-color: grey;
    color: whitesmoke
}


/****
1. DIV ATTRIBUTES
****/

.fullheight {
    height: 100vh;
}

.col-ninetyheight {
    height: 88vh;
}

.flex-item {
    width: 200px;
    height: 200px;
    text-align: center;
    margin: 5px
}

.section-block {
    display: inline-flex;
}

.section-image {
    width: 100%;
}

#title-name {
    padding-bottom: 3%;
}


/****
2. FONTS & TEXT
****/

.name {
    font-family: 'Shrikhand', cursive;
}

.sub-header {
    font-family: 'Open Sans', sans-serif;
}


/****
3. ANCHORS
****/

a.main-anchor {
    text-decoration: none;
    color: inherit;
}

a.main-anchor:hover {
    color: silver;
}

.white {
    color: white;
}