:root {
	--elt-transitions: 0.3s;
	--btn-transitions: 0.8s;
	--color-0: #000105;
	--color-1: whitesmoke;
	--color-2: red;
	--color-3: yellow;
	--color-4: #ffffff33;
}

#p5_loading {
	display: none;
}

body {
	background-color: var(--color-0);
	text-align: center;
	font-family: 'Trebuchet MS';
	color: var(--color-1);
}

main {
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: -10;
}

div, body {
	margin: 0;
	padding: 0;
	/*border: solid 1px white;*/
}

#head-logo {
	height: 100px;
	margin-top: 22px;
	position: relative;
}

payoff {
	display: block;
	margin: 24px;
	font-style: italic;
}

img {
	margin: 0px;
	padding: 0;
}

button {
	background-color: transparent;
	font-weight: bold;
	font-size: 16px;
	padding: 10px;
	border: solid 1px var(--color-2);
	min-width: 150px;
	color: var(--color-2);
	transition: var(--btn-transitions);
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

button::before {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 0%;
	background: var(--color-2);
	z-index: -1;
	transition: var(--btn-transitions);
	top: 0;
	border-radius: 0 0 50px 50px;
}

button:hover {
	color: var(--color-1);
	box-shadow: 0 0 5px var(--color-1);
}

button:hover::before {
	height: calc(100% + 50px);
}

.socials {
	height: 40px;
	margin: 8px;
	filter: brightness(200%);
	transition: var(--elt-transitions);
}

.socials:hover {
	transform: scale(1.1);
}

h2 {
	margin: 40px 0 15px 0;
	font-size: 2.5em;
}

.tool-logo {
	height: 5rem;
}

.container {
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 90%;
	margin: auto;
	margin-bottom: 48px;
	border-style: solid none solid none;
	border-color: var(--color-4);
	border-width: 1px;
}

.container.vertical {
	flex-direction: column;
}

.child {
	max-width: 50%;
	padding: 1.5%;
}

.child.vertical {
	max-width: 100%;
}

.img-container {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.slide {
	width: 85%;
	/*transition: 0.5s;*/
}

[data-lightbox]>img {
	width: 100%;
}

[alt=next], [alt=back] {
	cursor: pointer;
	height: 24px;
}

.radio-container {
	display: flex;
	justify-content: space-evenly;
	padding-top: 4px;
	padding-bottom: 8px;
}

.radio-child {
	width: 10px;
	height: 10px;
	border-radius: 10px;
	border: solid 2px var(--color-1);
	cursor: pointer;
	transition: var(--elt-transitions);
}

.radio-child:hover {
	background-color: var(--color-2);
}

.radio-child.selected {
	background-color: var(--color-1);
}