@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: 40rem;
	height: 62rem;
	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: #00FF00;
	text-decoration: none;
	/*border-left:1px solid #bbb;*/
}
.main a:visited {
	color: #00FF00;
	text-decoration: none;
}
.main a:hover {
	color: #000000;
	text-decoration: underline;
}
.main a:active {
	color: #000000;
	text-decoration: underline;
}

.button {
	background-color: #d67a12; /* Orange */
	border: none;
	color: white;
	padding: 10px 10px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 14px;
	margin-right: 10px; 		/* Add margin to create space between buttons */
	margin-bottom: 10px;		/* Add margin to create space between buttons */
}

.button-youtube {
	background-color: #FF0000; /* Red */
	border: none;
	color: white;
	padding: 10px 10px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 14px;
	margin-right: 10px; 		/* Add margin to create space between buttons */
	margin-bottom: 10px;		/* Add margin to create space between buttons */
}

.button-spotify {
	background-color: #06d450; /* Purple */
	border: none;
	color: white;
	padding: 10px 10px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 12px;
	margin-right: 10px; 		/* Add margin to create space between buttons */
	margin-bottom: 10px;		/* Add margin to create space between buttons */
}

.button-discord {
	background-color: #7289da; /* White */
	border: none;
	color: white;
	padding: 10px 10px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 12px;
	margin-right: 5px; 		/* Add margin to create space between buttons */
	margin-bottom: 5px;		/* Add margin to create space between buttons */
}

.button-info {
	background-color: #ffffff; /* White */
	border: none;
	color: black;
	padding: 2px 2px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 10px;
	margin-right: 10px; 		/* Add margin to create space between buttons */
	margin-bottom: 10px;		/* Add margin to create space between buttons */
}

.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;
}