body {
	background-color: var(--bg);
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: weight;
	font-style: normal;
	color: var(--white);
}

:root {
	--white: #fff;
	--bg: #0B0C15;
	--CTA: #ff7e21;
	--border: 1vw;
}

:active,
:hover,
:focus {
	outline: 0;
	outline-offset: 0;
}

.bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: .1;
	background-image: url(img/bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	pointer-events: none;
}

.container {
	text-align: center;
	margin-top: 10vw;
}

#inputField {
	width: 60vw;
	padding: 10px;
	font-size: 16px;
}

#startButton {
	padding: 10px 20px;
	font-size: 16px;
	margin-left: 10px;
}

#roulette {
	width: 70vw;
	margin: 30px auto;
	overflow: hidden;
	position: relative;
}

#roulette img {
	width: 100%;
	height: auto;
}

#result {
	font-size: 24px;
	font-weight: bold;
	margin-top: 20px;
}

#nextButton {
	display: inline-block;
	padding: 10px 20px;
	font-size: 18px;
	background-color: var(--CTA);
	color: #fff;
	text-decoration: none;
	margin-top: 20vw;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

#nextButton.visible {
	opacity: 1;
}

#nextButton.hidden {
	opacity: 0;
}

input {
	background-color: var(--bg);
	border: 1px solid var(--CTA);
	color: var(--CTA);
	border-radius: var(--border);
}

button {
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	background-color: var(--white);
	border-radius: var(--border);
	border: none;
	background-color: var(--CTA);
	color: var(--bg);
}

h1 {
	margin-bottom: 0;
	text-align: start;
}

p {
	margin-top: 0;
	margin: auto;
	margin-bottom: 5vw;
	text-align: start;
	font-size: 14px;
}

#nextButton {
	align-items: center;
	display: flex;
	gap: 15px;
	justify-content: center;
	width: fit-content;
	margin: auto;
	margin-top: 5vw;
	border-radius: var(--border);
}

.logo {
	width: 35vw;
	height: 35vw;
	margin-left: -2vw;
}

.shadow {
	height: 200px;
	width: 100px;
	background-color: var(--CTA);
	filter: blur(100px);
}

.shadow.bottom {
	position: absolute;
	bottom: 0;
	right: 0;
}

.shadow.top {
	position: absolute;
	top: 0;
	left: 0;
}

.name {
	display: flex;
	align-items: center;
}