
@font-face {
  font-family: 'proxima-light';
  font-style: normal;
  src: url('../fonts/ProximaSoft-Light.woff2') format('woff2');
   font-display: block;
   unicode-range: U+0000-007F;
}

@font-face {
  font-family: 'heebo';
  font-style: normal;
  src: url('../fonts/Heebo-Black.woff2') format('woff2');
   font-display: block;
   unicode-range: U+000-0FF;
}
/*@font-face {
  font-family: 'proxima-thin';
  font-style: normal;
  src: url('../fonts/ProximaSoft-Thin.woff2') format('woff2');
  font-display: block;
  unicode-range: U+000-07F;
}
@font-face {
  font-family: 'proxima-regular';
  font-style: normal;
  src: url('../fonts/ProximaSoft-Regular.woff2') format('woff2');
   font-display: block;
   unicode-range: U+000-07F;
}*/
@font-face {
  font-family: 'proxima-bold';
  font-style: normal;
  src: url('../fonts/ProximaSoft-Bold.woff2') format('woff2');
  font-display: block;
  unicode-range: U+0000-007F;
}

:root{
	 --underline: #151515;
	 --white:  #fafafa;
	 --opposite: #fefefe;
	 --font-size: 17.6px;
	 --line-height: 1.46em;
	 --page-height: 100vh;
}

.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 5px 5px;
}

/* Create four equal columns that sits next to each other */
.column {
  -ms-flex: 48%; /* IE10 */
  flex: 48%;
  max-width: 48%;
  padding: 1%;
}

.column img {
  vertical-align: middle;
  
}
	
.box {
	width: 100%;
	border-radius: 7px;
	border-style: solid;
	border-width: 1px;
	border-color: inherit;
	color: inherit;
	display: inline-block;
	 margin-top: 8px;
  vertical-align: middle;

}

.box-header {
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-bottom-color: inherit;
	padding:  15px 20px;
	font-size: 18px;
	font-family: 'proxima-light';
	background: var(--underline);
	color: var(--opposite);
	line-height: 1.4em;
	border-radius: 6px 6px 0px 0px;
	scroll-margin-top: 30px;
}

.box p {
	padding:  0px 20px;
	color: inherit;
	font-size: 16px;
	word-break: keep-all;
	word-wrap: normal;
}

.box a{
		display: block;
		margin: 5px 0px;
}

.br {
	display: block; /* makes it have a width */
  content: ""; /* clears default height */
  height: 12px;
}

#snowbg{
	height: 110vh;
	width: 100vw;
	top:  0px;
	margin-left: -35%;
	position: fixed;
	pointer-events: none;
}

html{
	padding: 0px;
}

body{

	font-size: var(--font-size);
	padding:  10% 15% 5% 15%;
	font-family: 'proxima-light', sans-serif;
	line-height: 1.6em;
	color: #1a1a1a;
	background: var(--white);	
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  display: relative;
}

	a {	
		text-decoration: none;
		text-decoration-color: black;
	  display: inline-block;
	  position: relative;
	  color: inherit;
	  font-family: 'proxima-bold';
	  cursor: pointer;
	  word-break: break-all;
	  text-shadow: 0.07em 1.5px var(--opposite), 0em 1.5px var(--opposite), -0.12em -0.25px var(--opposite), -0.07em 1.5px var(--opposite);
	}

	a:after {
	  content: "";
	  display: inline-block;
	  border-radius: 10px;
	  width: calc(100% + 1.5px);
	  height: 2.5px;
	  background-color: var(--underline);
	  position: absolute;
	  left: -0.5px;
	  bottom: 3.4px; 
	  word-break: break-all;
	  transform-origin: left; 
	  transform: scaleX(0);
	  transition: 0.25s linear;
	   will-change: transform;
	   z-index: -1; 
	}

	a:hover:after {
	  transform: scaleX(1);
}

p{ margin: 1.2em 0em;
	font-size: var(--font-size);
	line-height: var(--line-height);
		font-family: 'proxima-light';
		position: relative;
}

i{
	font-family: 'proxima-light';

}

img{
	width: 130px;
	height: 167px;
	object-fit: cover;
	object-position: 0.5px 10%;
	border-radius: 3.5px;
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
	cursor: url('../photos/moon.png'), auto;	
	margin-right: 20px;

}

#links{
	display: inline-block;
	vertical-align: top;
	margin-top: -6px;
	text-align: left;
	position: relative;
	width: 150px;
	word-break: keep-all;
	overflow-x: visible;
}

#links a:after{
	bottom: 3px;
}

.hidden{
	display: none;
}


::selection {
		color: var(--opposite);
		background-color: var(--underline);
		text-shadow: none;
}

a::selection {
		color: var(--opposite);
		background-color: var(--underline);
		text-shadow: 0.09em 1.5px var(--underline), 
	  						0em 1.5px var(--underline), 
	  						-0.12em -0.25px var(--underline), 
	  						-0.07em 1.5px var(--underline);
}

.dark{
	color: #e9e9e9;
	background: #151515;
	/*font-family: proxima-regular;*/
}

.dark i{
	font-family: /*proxima-thin,*/ proxima-light;
}

.dark a:after{
		height: 2.2px;
	}

.inactive:after {
  height: 0px;
}

.inactive{
	cursor: default;
	color: grey;
		pointer-events: none;
}

.left{
	margin-left: -130px;
	font-size: 24px;
	font-family: 'proxima-light';
	display: block;
	text-align: right;
	margin-top: 0.8em;
	width: 100px;
	margin-bottom: -50px;
}


@media screen and (min-device-width: 750px) {

body{
	padding: 10% 20% 5% 30%;
}

.left{
	margin-left: -130px;
}

#snowbg{
	margin-left: -30%;
}

}

@media screen and (min-device-width: 1000px) {

body{
	padding:  10% 25% 5% 28%;
	max-width: 34rem;
	margin: auto;

}

#snowbg{
	margin-left: -33%;
}
}


@media screen and (max-device-width: 500px) {

body{
	padding: 10% 5% 5% 5%;
}

.left{
	margin-left: 0px;
	width: 140px;
	font-size: 22px;
	display: inline-block;
	position: relative;
	text-align: left;
	margin-top: 1em;
}

#snowbg{
	margin-left: -5%;
}

}

@media screen and (max-device-width: 1000px) {
	
	.snowflake:after {
	  margin-top: -calc(var(--size) + 5px);
	  margin-left: -calc(var(--size) + 5px);
    content: "\2744"; 
    font-size: calc(var(--size) + 5px);
  }
}
