

:root { 
	--box-shadow: 1px 8px 8px rgba(0, 0, 0, 0.3); 
	--header-size: 3.5rem; 
}


html {
	color: white;
	padding: 0;
	margin: 0;
}

body {
	padding: 0;
	margin: 0;

	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: 100;
	font-style: normal;
}

.background {
	position: fixed; 
	z-index: -999;
	background-color: rgb(18 13 59);
	background-image: url(../img/back-tech.jpg);
	background-size: cover;

	width: -webkit-fill-available;
	height: -webkit-fill-available;
}

.background-cover {
	position: fixed; 
	z-index: -999;
	background: radial-gradient(#000000ff, #00000000);

	width: -webkit-fill-available;
	height: -webkit-fill-available;
}

.header {
	position: absolute;
	top:  0;
	height: var(--header-size); 
	background: rgba(0, 0, 0, 1);

	width: -webkit-fill-available;

	display: inline-flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.header-left {
	width:33%;
	padding-left: 1rem;
	text-align: left;
}

.header-center {
	width:33%;
	text-align: center;
}

.header-right {
	width:33%;
	padding-right: 1rem;
	text-align: right;
}


.header-left img{
	font-size: medium; 
}

.header-left h1{
	font-size: medium; 
	font-weight: 500;
}


 
.content {
	width: -webkit-fill-available;
	height: calc(100% - var(--header-size) - 2rem);
	margin-top:  calc(var(--header-size) + 2rem);

	display: inline-flex; 
	flex-direction: column;
	align-items: center; 
	justify-content: center;
}

.content-logo { 
	text-align: center;
}
.content-logo img{ 
	margin: auto;
	max-width: 25%; 
}

.content-main {
	display: inline-flex;
	flex-direction: column;
	align-items: center; 
	justify-content: center;
	text-align: center;
}
 
.content-main h2 {
	font-size: 3rem;
	font-weight: 700;
	margin: 0;
	padding: 0;
	color: rgb(202 193 255);
}

.content-main h3 {
	font-weight: 500;
	font-size: 7rem; 
	margin: 0;
	padding: 0;
}

.content-buttons {
	margin-top: 4rem;
	display: inline-flex;
	flex-direction: row;
	align-items: center; 
	justify-content: center;
}

.content-buttons a{
	margin: 0 2rem;
	font-size: 2rem;
	padding: 1rem 1.5rem;
	border-radius: 2rem;
}

.content-buttons img{
	width: 3rem;
}

 


.color-dif {
	color:rgb(248, 255, 112);
}

.button-white-fill {
	background-color: rgba(255, 255, 255, 1);
	padding: 0.5rem;
	color: rgba(0, 0, 0, 1);
	text-decoration: none;
	font-weight: 700;

	border-radius: 1rem;
}

.button-white-fill:hover {
	background-color: rgb(191, 191, 191); 
}
 
.icon-image {    
	content: ""; 
	display: inline-block;
	height: 2.5rem;
	width: 2.5rem; 
	background-size: cover;
	margin-right: 0.8rem;  
	vertical-align: middle;
	position: relative;
	top: -0.2rem;
}

.icon-instagram {    
	background-image: url("../img/icon_instagram_black.png"); 
}

.icon-mail {    
	background-image: url("../img/icon_mail_black.png"); 
} 