* {
	padding: 0;
	margin: 0;
}

body {
	height: 100vh;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fcfefb;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.gif {
	width: 100%;
	height: 100%;
}

h2 {
	text-align: center;
	font-size: 1.5em;
	color: #e94d58;
	margin: 15px 0;
}

.btn-group {
	display: flex;
	width: 100%;
	height: 50px;
	justify-content: center;
	margin-top: 50px;
	gap: 10%;
}

button {
	width: 150px;
	/* position: absolute; */
}

.yes-button {
	padding: 1.3em 3em;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2.5px;
	font-weight: 500;
	color: #ffffff;
	background-color: #e94d58;
	border: none;
	border-radius: 45px;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease 0s;
	cursor: pointer;
	outline: none;
	left: 40%;
}

.yes-button:hover {
	background-color: #ffffff;
	box-shadow: 0px 5px 10px #e94d58;
	color: #000000;
	transform: translateY(-3px);
}

.yes-button:active {
	transform: translateY(-1px);
}

.no-button {
	padding: 1.3em 3em;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2.5px;
	font-weight: 500;
	color: black;
	background-color: white;
	border: none;
	border-radius: 45px;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease 0s;
	cursor: pointer;
	outline: none;
	border: solid #e94d58 1px;
	right: 40%;
}

.no-button:hover {
	background-color: #ffffff;
	box-shadow: 0px 5px 10px #e94d58;
	color: #000000;
	transform: translateY(-3px);
}

.no-button:active {
	transform: translateY(-1px);
}

.wrapper-dialog {
	display: none;
	position: absolute;
	/* display: flex; */
	justify-content: center;
	align-items: center;
	height: 100vh;
	width: 100vw;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.7);
	opacity: 1;
	color: white;
}

.dialog {
	background-color: white;
	height: 500px;
	width: 800px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
	flex-direction: column;
}

.dialog-text {
	color: black;
	margin-bottom: 50px;
}

.jump {
	position: absolute;
	display: none;
	top: 0;
	left: 0;
	justify-content: center;
	align-items: center;
	height: 100vh;
	width: 100vw;
}

.author {
	position: absolute;
	right: 0;
	bottom: 0;
	padding: 10px;
	color: #9e9e9e;
}
