/*
Author: NitroxydeX
Author URI: https://nitroxydex.net/
Version: 1.0
=============================================

Table of Contents

- Import Fonts
- General
  - Headings
  - Icon Font
  - Button
  - Background Image
- Flex Grid
  - Centering Elements
  - Asymetric Column
- Section Elements
  - Logo
- Site Navigation
  - Toggle
  - Menu
- Resume Elements
  - About
  - Progress Bar
  - Icon Box
  - Portfolio Gallery
  - Contact Section
- Helper Classes
  - Margin
  - Padding
  - Letter Spacing
  - Text Alignment

*/

/*
Import Fonts
==================================================================================================== */

/*
General
==================================================================================================== */

* {
	padding: 0;
	margin: 0;
}

body {
	font-size: 14px;
	color: #333;
	overflow-x: hidden;
	position: relative;
	min-height: 100vh;
	background-color: #1976d2;
	font-family: 'Roboto', sans-serif;
}

#particles-js {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
}

ol, ul {
	list-style: none;
}

#footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
	height:	120px;
}

#footer .right {
    position: absolute;
    bottom: 0;
    right: 1em;
    text-align: right;
}

@media screen and (max-width: 767px) {
	#footer {
		height: 50px;
	}
	
	h1 {
		font-size: 28px;
		font-weight: 400;
	}
}

/*
Flex Grid
==================================================================================================== */

#main {
	max-width: 1004px;
	padding: 10px;
	margin: 0 auto;
}

ul.contact {
	cursor: default;
	margin: 0 0 1em 0;
}

ul.contact li {
	display: inline-block;
	font-size: 1.5em;
    margin-left: 1em;
}

@media screen and (max-width: 359px) {
	ul.contact li {
		font-size: 0.6em;
	}
}

@media screen and (min-width: 360px) and ( max-width: 767px) {
	ul.contact li {
		font-size: 0.8em;
	}
}

ul.contact li span {
	display: none;
}

ul.contact li a {
	opacity: 0.35;
	color: #fff;
	-moz-transition: opacity 0.25s ease-in-out;
	-webkit-transition: opacity 0.25s ease-in-out;
	-ms-transition: opacity 0.25s ease-in-out;
	transition: opacity 0.25s ease-in-out;
}

ul.contact li a:hover {
	opacity: 1.0;
}

.icon {
	position: relative;
	text-decoration: none;
	font-size: 2em;
}

.icon:before {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-style: normal;
	font-weight: normal;
	text-transform: none !important;
}

.icon > .label {
	display: none;
}



/*
Section Elements
==================================================================================================== */

.typings {
    top: 45%;
    position: absolute;
    left: 40%;
    font-size: 32px;
    color: #FFF;
}

@media screen and (max-width: 767px) {
	.typings {
		top: 20%;
		left: 5%;
	}
	
	.typings p {
		font-size: 20px;
	}
}