html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	padding: 0;
}
@font-face {
  font-family: 'GeekFont';
  src: url('../fonts/geek.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

#main {
	background-image: url('../img/bg.png');
	background-size: 100% 100%;
	background-repeat: no-repeat;
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
#home {
	background: rgb(226,207,61,0.5);
	width: 50%;
	height: 60%;
	border: 10px solid transparent;
    animation: auraAnimation 1s infinite alternate;
    border: 5px solid #c5c5c5;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.info {
	text-align: center;
	font-family: 'GeekFont', sans-serif;
}
.title {
	margin: 0;
	padding: 0;
	font-size: 45px;
	font-family: 'GeekFont', sans-serif;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	margin-bottom: 10px;
}
.info h1 {
	font-size: 3.5em;
	color: #FFF;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.info p {
	text-align: center;
	font-size: 1.8em;
	color: #FFF;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.buttons {
	display: flex;
	justify-content: center;
}

.button {
	background: #000;
	color: #FFF;
	padding: 20px;
	margin: 5px;
	text-align: center;
	border-radius: 5px;
	width: 120px;
	border: 2px solid gold;
	cursor: pointer;
	text-decoration: none;
	text-transform: uppercase;
}

@keyframes auraAnimation {
    0% {
        box-shadow: 0px -5px 40px 20px rgba(249, 223, 21, 0.0), 
				    0px -5px 80px 20px rgba(249, 223, 21, 0.1),
				    0px -5px 150px 20px rgba(249, 223, 21, 0.2);
    }
    100% {
        box-shadow: 0px -5px 60px 20px rgba(249, 223, 21, 0.0),
	    			0px -5px 140px 20px rgba(249, 223, 21, 0.4), 
	                0px -5px 160px 20px rgba(249, 223, 21, 0.8);
    }
}

#footer {
	margin-top: 50px;
	padding: 30px;
	display: flex;
	justify-content: center;
	background: linear-gradient(#020724, #020729);
}
#footer div p {
	color: #FFF;
	margin: 0;
	padding: 0;
}
#footer div p a {
	color: #FFF;
	text-decoration: none;
}
@media (max-width: 1000px) {
	.buttons {
		flex-direction: column;
	}
	#home {
		height: 80vh;
		width: 80%;
	}
}
@media (max-width: 640px) {
	#main {
		background-image: url('../img/mobile-bg.png');
	}
	#home {
		height: 80vh;
		max-width: 80%;
	}
	.info h1 {
		font-size: 2.5em;
	}
	.info p {
		font-size: 1.5em;
	}
	.buttons {
		flex-direction: column;
	}
	.button {
		padding: 10px;
	}
}