@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans&display=swap');

body {
	background: url('images/background.jpg') no-repeat;
	background-attachment: fixed; 
	background-size: cover;
	display: grid;
	align-items: center;
	justify-content: center;
	height: 100vh;
}

.main {
	background-color:rgb(255, 255, 255);
	margin: auto;
	margin-top: 0%;
	margin-bottom: 0%;
	width: 32rem;
	height: 28rem;
	border: 3px solid #e4bd12;
	padding: 10px;
	text-align: center;
	font-family: 'Nunito Sans', sans-serif;
	box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2);
	border-radius: 10px;
	position: relative;
	z-index: 1;
	background: inherit;
	overflow: hidden;
	font-weight: bold;
}

.main:before {
	content: "";
	position: absolute;
	background: inherit;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	box-shadow: inset 0 0 2000px rgba(255, 255, 255, .5);
	filter: blur(10px);
	margin: -20px;
}

.main a:link {
	color: #000000;
	text-decoration: none;
	/*border-left:1px solid #bbb;*/
}
.main a:visited {
	color: #000000;
	text-decoration: none;
}
.main a:hover {
	color: #000000;
	text-decoration: underline;
}
.main a:active {
	color: #000000;
	text-decoration: underline;
}

.button {
	background-color: #d67a12; /* Green */
	border: none;
	color: white;
	padding: 15px 15px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 14px;
}

.video {
	position: relative;
}

/* -- Scrollbar -- */

/* Firefox */

* {
    scrollbar-width: none;
    scrollbar-color: #dcdcdc #151515;
}

/* Chrome, Edge, and Safari */

*::-webkit-scrollbar {
    width: 8px;
}

*::-webkit-scrollbar-track {
    background: #151515;
}

*::-webkit-scrollbar-thumb {
    background-color: #dcdcdc;
    border-radius: 5px;
    border: 0px none #ffffff;
}