@charset "UTF-8";

/* Google material icons */

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}

:root{
	--colorZero:black;
	--colorOne:white;
}

body{
	text-align: center;
	background: var(--colorZero);
	color: var(--colorOne);
	font-family: 'Montserrat', sans-serif;
}

h1 {
	/* font-size: 2.5em; /* 40px/16=2.5em */
	font-size:60px;
	margin-top: 10px;
	margin-bottom: 14px;
	cursor:pointer;
}

.logo {
	font-size: 222px;
	/*margin-top: 30px;*/
	margin-bottom: 10px;
}

@media (max-width: 1024px){
	h1 {
		font-size:6vw;
	}
	.logo{
		font-size: 22vw; /* vw size = font-size*100/screen-width-limit*/
		/*margin-top: 3vw;*/
		margin-bottom: 1vw;
	}
}

.Center_Aligner{
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.CenteredContent{
	max-width: 100%;
}

.unselectable{
	-webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.page-container{
	position: relative;
	min-height: 100vh;
}

.content-wrap{
	padding-bottom: 50px; /*footer height*/
}

footer {
    position: fixed;
    height: 50px;
    bottom: 0;
    background: var(--colorZero);
    width: 100%;
    /*border:0px solid red;*/
}

.sepline{
	height: 1px;
	width: 80%;
	background-color: var(--colorOne);
	border:0px solid grey;
	margin: 0 auto; /*Centers the div */
}

.footerContent{
	background: var(--colorZero);
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.column {
  display: flex;
  flex-direction: column;
  flex:0 0 24%;
}

.footerColumn {
  display: flex;
  height: 49px;
  align-items: center;
  /*border:1px solid red;*/
}

.leftFooterColumn{
	justify-content: flex-start;
	padding-left:30%;
}
.centerFooterColumn{
	justify-content: center;

}
.rightFooterColumn{
	justify-content: flex-end;
	padding-right:30%;
  	cursor:pointer;
}

.marginColumn {
	display: flex;
	flex-direction: column;
	flex:0 0 14%;
}

.socialIcons{
	font-size:18px;
	letter-spacing:0.2em;
	cursor:pointer;
}