html {
	scroll-behavior: smooth;
}

body {
	background: #2e2b2c;
	background: radial-gradient(circle, rgba(46,43,44,1) 10%, rgba(0,0,0,1) 100%);
	background: -moz-radial-gradient(circle, rgba(46,43,44,1) 10%, rgba(0,0,0,1) 100%);
	background: -webkit-radial-gradient(circle, rgba(46,43,44,1) 10%, rgba(0,0,0,1) 100%);
	background: radial-gradient(circle, rgba(46,43,44,1) 10%, rgba(0,0,0,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2e2b2c",endColorstr="#000000",GradientType=1);
	margin: 0;
	font-family: 'Manrope', sans-serif;
	color:#fefefe;
}

h1, h2, h3, h4 {
	color: #ffc000;
}

a {
	color: #ffc000;
	text-decoration: none;
	transition: all .3s ease-in;
}

a:hover {
	text-decoration: underline;
}

.box {
	margin: 2em 0;
}

.button-big {
	background: #ffc000;
	color: #fff;
	padding: 1em 1.5em;
	font-weight: 800;
	border-radius: 3px;
}

.full-height {
	height: 100vh;
	display: flex;
  justify-content: center;
	align-items: center;
}

.wrap {
	max-width: 1200px;
	margin: 5em auto;
}

.scroll-down {
	position: absolute;
	bottom: 2em;
	animation: bounce 1s ease infinite;
}

@keyframes bounce {
  50% {
    transform: translateY(-50%);
  }
}

.row {
	margin-top: 2em;
	margin-right: 0 !important;
  margin-left: 0 !important;
}

.footer {
	font-size: 10px;
}

@media (max-width: 425px) {
	iframe {
		width: 100% !important;
	}
}