/* --- Reset --- */
* { 
   -moz-box-sizing: border-box; 
   -webkit-box-sizing: border-box; 
   box-sizing: border-box; 
   padding: 0px;
   margin: 0px;
}

html, body { 
   height: 100%; 
   width: 100%; 
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  background-color: #ebebee;
  color: black;
}

::-webkit-input-placeholder, :-moz-placeholder, ::-moz-placeholder, :-ms-input-placeholder { 
  color:    #999;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}

p {
  font-size: 18px;
}

a:hover, input, textarea, select, button {
  -o-transition:.5s;
  -ms-transition:.5s;
  -moz-transition:.5s;
  -webkit-transition:.5s;
  transition:.5s;
   -webkit-appearance: none;
   border-radius: 0px;
   font-family: 'Poppins', sans-serif;
}

/* --- Variables --- */
:root {
   --main-bg-color: #0099cc;
	--main-bg-color-hov: #007bae;
   --main-bg-text-color: white;
   --main-bg-text-color-hov: white;
}

/* --- Main styles --- */
.inner {
	max-width: 1400px;
	width: 100%;
	display: block;
	margin: 0 auto;
}

.main {
	height: 100%;
}

.main .inner {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
}

h1 {
	font-size: 60px;
	
}

.buttons {
	margin-top: 50px;
	display: flex;
	gap: 10px;
}

.btn {
	font-size: 20px;
	font-weight: bold;
	padding: 20px;
	border-radius: 3px;
	border: none;
	outline: none;
	min-width: 280px;
	display: inline-block;
	cursor: pointer;
	flex-grow: 1;
}

.yes {
	background: limegreen;
}

.yes:hover {
	background: green;
}

.no {
	background: firebrick;
}

.no:hover {
	background: red;
}

.youtube, .cat {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
}

.mobile {
	display: none;
	margin-top: 20px;
}

footer {
	padding: 20px;
	text-align: center;
	font-size: 20px;
	color: #666;
}


footer a {
	color: #666;
}

/* --- Dark mode --- */
@media (prefers-color-scheme: dark) {
	body {
		background-color: #2b2b2b;
		color: #ccc !important;
	}
	footer {
		color: white;
	}
	
	
	footer a {
		color: white;
	}
}

/* Small desktop sizing issues --- */
@media only screen and (max-width: 1410px) {
	.inner {
		width: 95%;
	}
}

/* --- Mobile styles --- */
@media only screen and (max-width: 800px) {
	h1 {
		font-size: 30px;
	}
	.buttons {
		flex-direction: column;
	}
	
	.main {
		padding: 5px;
	}
	
	.mobile {
		display: inline-block;
	}
	
	
}