.main{
    height: 100vh; /*Volledige hoogte op elke scherm*/
}


.main{
    margin: 0;
    padding: 0;
    display:flex;
    flex-direction: row;  
}

.main>div{
    display: flex;
    flex-grow: 1;
    flex-basis: 0;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.main_center img{
    max-width: 100%;
}

h1{
    color: white;
    font-size: 40px !important;
}

p{
    color: white;
    font-size: 20px !important;
}


/*Code van https://codepen.io/GioAc96/pen/QarEQM */
/*aangepast naar mijn smaak*/
/*Het was vooral voor de animatie*/

.round_button_left{
    margin-top: 50px;
	width: 6vmin;
	height: 6vmin;
	box-sizing: border-box;
	transform: rotate(-135deg);

	&::before {
		content: '';
		width: 100%;
		height: 100%;
		border-width: .8vmin .8vmin 0 0;
		border-style: solid;
		border-color: #fafafa;
		transition: .2s ease;
		display: block;
		transform-origin: 100% 0;
	}

    &::after {
		content: '';
		float: left;
		position: relative;
		top: -100%;
		width: 100%;
		height: 100%;
		border-width: 0 .8vmin 0 0;
		border-style: solid;
		border-color: #fafafa;
		transform-origin: 100% 0;
		transition:.2s ease;
	}
	
	&:hover::after {
		transform: rotate(45deg);
		border-color: orange;
		height: 120%;
        cursor: pointer;
	}
	&:hover::before {
		border-color: orange;
		transform: scale(.8);
		
	}

}

.round_button_right{
    margin-top: 50px;
	width: 6vmin;
	height: 6vmin;
	box-sizing: border-box;
	transform: rotate(45deg);

	&::before {
		content: '';
		width: 100%;
		height: 100%;
		border-width: .8vmin .8vmin 0 0;
		border-style: solid;
		border-color: #fafafa;
		transition: .2s ease;
		display: block;
		transform-origin: 100% 0;
	}

    &::after {
		content: '';
		float: left;
		position: relative;
		top: -100%;
		width: 100%;
		height: 100%;
		border-width: 0 .8vmin 0 0;
		border-style: solid;
		border-color: #fafafa;
		transform-origin: 100% 0;
		transition:.2s ease;
	}
	
	&:hover::after {
		transform: rotate(45deg);
		border-color: orange;
		height: 120%;
        cursor: pointer;
	}
	&:hover::before {
		border-color: orange;
		transform: scale(.8);
		
	}
}

/*Pop-up*/
/*Code deels gebruikt vanop CodePen*/
/*https://codepen.io/Coding_Journey/pen/jOOBvqR*/
.pop-up{
	position: fixed;
	left:0;
	right:0;
	width: 100%;
	height: 100%;
	display: none;
	justify-content: center;
	align-items: flex-start;
	z-index:100;
	background-color: rgba(0, 0, 0, 0.7);
	transition: all 2s;
}

.pop-up-content{
	position: relative;
	background-color: white;
	margin: 2em;
	padding: 2em;
	border-radius: 0.5em;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.503);
	width: 40%;
}

.pop-up-content h1{
	text-align: center;
	margin-bottom: 1em;
	color: black;
}

.pop-up-content p{
	text-align: center;
	margin-bottom: 1.5em;
	color: black;
}

.close{
	position: absolute;
	top:0;
	right: 10px;
	font-size: 1.5em;
	font-weight: bold;
	padding: 0 0 1em;
	cursor: pointer;
}

.close:hover{
	color: rgba(0, 0, 0, 0.5);
}

.pop-up-content-buttons{
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.pop-up-content-buttons button{
	padding: 15px 35px 15px 35px;
	font-size: 14px;
	font-weight: 400;
	text-transform: capitalize;
	font-size: normal;
	text-decoration: none;
	line-height: 1em;
	letter-spacing: 0px;
	word-spacing: 0;
	fill: #FFFFFF;
	color: #FFFFFF;
	background-color:orange;
	border-style: solid;
	border-width: 1px 1px 1px 1px;
	border-color: orange;
	border-radius: 100px 100px 100px 100px;
}

.pop-up-content-buttons button:hover{
	background-color: rgba(255, 166, 0, 0.811);
}

