#bg-img
{
	width: 100vw;
	height: 100vh;
	position: fixed;
	z-index: -1000
}

#title-block
{
	width: 100vw;
	height: 100vh;
}

h1
{
	position:absolute;
	top:40vh;
	width:100vw;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	padding:0;
	margin:0;

	color:white;
	text-shadow: 5px 5px 10px lightblue;
}

#h1-name
{
	font-size: 6vw;
	transition: all 1s;
}

#h1-desc
{
	font-size: 2.5vw;
	transition: all 1s;
}


#presentation
{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;

	background-color: white;
	font-family: "Montserrat", sans-serif;

	padding-top: 7rem;
	padding-bottom: 7rem;
	padding-left: 10vw;
	padding-right: 10vw;
}

#presentation h2
{
	width: 100%;
	max-width: 50%;

	font-weight: 600;
	font-size: 3.5rem;
	margin:0;

	color: #040b29;
}

#presentation .text
{
	width: 100%;
	max-width: 50%;

	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

#presentation p
{
	font-size: 1.2rem;
	line-height: 1.7rem;
	color: rgb(50,50,50);
}

.button
{
	display: block;

	border-radius: 10rem;
	padding-right: 1rem;
	padding-left: 1rem;
	padding-top: 1rem;
	padding-bottom: 1rem;

	background-color: #040b29;
	color: white;
	text-decoration: none;
	font-size: 1rem;
	font-weight: bold;

	transition: background-color 0.5s;
}

.button:hover
{
	background-color: #15204d;
}

.bubblebox
{
	background-color: white;
	font-family: "Montserrat", sans-serif;
	padding-left: 5vw;
	padding-right: 5vw;
	padding-bottom: 2.5rem;
	padding-top: 2.5rem;
}

.bubblebox:nth-child(2n)
{
	background-color: rgb(240,240,240);
}

.bubblebox h2
{
	width: 100%;
	text-align: center;

	font-weight: 600;
	font-size: 3rem;
	margin:0;

	color: #040b29;
}

.boxes
{
	margin-top: 2rem;

	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: stretch;

	width: 100%;
}

.box
{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;

	width: 100%;

	padding-left: 2rem;
	padding-right: 2rem;

	transition: all 0.5s;
}

.box img
{
	display: block;
	width: 100%;

	border-radius: 100rem;

	transition: all 0.5s;
}

.box:hover
{
	transform: scale(1.05);
}

.box h3
{
	margin: 0;
	margin-top: 1rem;
	margin-bottom: 0.5rem;

	font-size: 1.3rem;
	font-weight: bold;
	color: #142159;
	text-align: center;
}

.box p
{
	margin: 0;
	text-align: center;
	padding-left: 0.5rem;
	padding-right: 0.5rem;

	font-size: 0.9rem;
	line-height: 1.3rem;
}

footer
{
	margin-top: 0;
}