* {
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  }
/* Colors Dark Mode*/
:root {
	--main-background: #000000;
	--card-background: #1c1c1c;
	--main-font: #ffffff;
	--main-border: rgba(255,255,255,0.85);
	--main-border-plain: #ffffff;
	--accent-color: #1190cb;
	--accent-color-shade: #0980bd;
	--links: #ffffff;
  }
  

body{
	color: var(--main-font);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Open Sans', sans-serif, Arial;
	margin: 20px 0px 0px 0px;
	background: url(../img/background.jpg);
	background-size: auto;
	padding: 0px 0px 20px 0px;
}
body a.link{
	color: var(--accent-color);
	text-decoration: none;
	cursor: pointer;
	font-weight: bold;
}
.contentBlock{
	display: flex;
	gap: 20px;
	width: fit-content;
}
.menu{
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.menu a{
	text-decoration: none;
	color: var(--main-font);
	background-color: var(--card-background);
	padding: 20px;
	box-shadow: 0px 0px 4px 3px var(--main-border);
	transition: transform .2s;
}
.menu a:hover{
	transform: scale(1.05);
}
.card{
	background-color: var(--card-background);
	padding: 50px 50px 0px 50px;
	width: 700px;
	min-height: 800px;
	display: flex;
	flex-direction: column;
	align-items: center;
	-webkit-box-shadow: 0px 0px 6px 6px var(--main-border); 
	box-shadow: 0px 0px 8px 5px var(--main-border);
}
.top{
	max-height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.top *{
	height: 100%;
}
.top .border, .top .border a{
	display: contents;
}
.top .border img, .top .border .symbol{
	border-radius: 50%;
	border: 10px solid var(--accent-color);
	background-color: white;
}
.content{
	display: flex;
	align-items: start;
	padding: 5% 0px 0px 0px;
  	margin: 0px 0px 35px 0px;
}
.symbol{
	display: block;
}
.symbol span{
	font-weight: bold;
	font-size: 140px;
	font-family: Helvetica;
	color: black;
	padding: 10px;
	margin-top: -24px;
	display: block;
}
.title{
	color: rgb(71, 170, 215);
	text-align: center;
	font-size: 2em;
	font-weight: bold;
	margin-bottom: 20px;
}
.socialMedia{
	display: flex;
	flex-direction: column;
}
.socialMedia a{
	color: white;
	text-decoration: none;
	font-weight: bold;
	line-height: 3;
	display: flex;
}
.socialMedia img{
	width: 20px;
	line-height: 3;
	margin: 0px 5px 0px 0px;
	filter: invert(100%);
}
input, textarea{
	padding: 10px;
	border-radius: 12px;
	border-color: var(--main-border);
}
input[type=button], input[type=submit]{
	cursor: pointer;
	border: 2px solid var(--accent-color-shade);
	border-bottom-width: 8px;
	border-left-width: 5px;
	border-right-width: 5px;
	background-color: var(--accent-color);
	font-weight: bold;
	color: white;
}
input[type=button], input[type=submit]:hover{
	border-color: var(--accent-color);
	background-color: var(--accent-color-shade);
}
.contactForm{
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
	margin: 15px 0px;
}
.contactForm *{
	display: block;
	width: 100%;
}
.menu .icon{
	display: none;
	cursor: pointer;
	font-size: 25px;
}

.mobileMenu{
	display: none;
}

/* Exceptions */
/*.top img.icon{
	border-radius: 0px;
}*/
@media screen and (max-width: 1000px) {
	.contentBlock{
		margin-top: 110px;
	}
	.menu{
		display: none;
	}
	.mobileMenu{
		position: fixed;
		top: 0;
		display: flex;
		flex-direction: column;
		width: 100%;
		background-color: var(--card-background);
		z-index: 2000;
	}
	.mobileMenu i{
		margin: 10px;
		font-size: 30px;
		cursor: pointer;
	}
	.mobileMenu .clap{
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 10px;
	}
	.mobileMenu .links{
		display: none;
		width: 100%;
		border-bottom: 1px solid white;
	}
	.mobileMenu .links a{
		text-decoration: none;
		color: var(--main-font);
		background-color: var(--card-background);
		padding: 20px;
		width: 100%;
		display: block;
	}
	.top img{
		max-width: 100%;
		max-height: 25vh;
	}
	.card{
		width: initial;
		min-height: 70vh;
		margin: 0px 10px;
		padding: 10px;
		height: initial;
		box-shadow: none;
		position: relative;
		top: 20px;
		z-index: 0;
	}
  }
