
	:root {
		--dark-gradient-start: #343231;
		--dark-gradient-end: #343231;
		--vibrant-gradient-start: #8bd8ff;
		--vibrant-gradient-end: #43d6a1;
		--message-fade-in: 1s;
		--message-fade-out: 2s;
		--message-padding: 3rem;
		--min-edge-distance: 20px;
		--base-font-size: 1.5rem;
		--section-transition: 0.8s;
	}

	* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
	}

	body {
		height: 100vh;
		overflow: hidden;
		font-family: Rubis, Georgia, "Times New Roman", Times, serif;
		position: relative;
	}

	.section {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		transition: transform var(--section-transition) ease-in-out;
	}
	
	.head {
		position: absolute;
		top:30px;
		text-align: center;
		font-family: GT America,Helvetica,sans-serif; 
	}
	
	h1.title {
		font-size:170%;

	}
	
	.subtitle {
		font-size:90%;
		margin-top:5px;
		opacity: 0.5;

	}

	.dark-section {
		background: linear-gradient(45deg, var(--dark-gradient-start), var(--dark-gradient-end));
		color: #bebebe;
		transform: translateX(0);
	}

	.vibrant-section {
		background: linear-gradient(45deg, var(--vibrant-gradient-start), var(--vibrant-gradient-end));
		color: #b300ab;
		transform: translateX(100%);
	}

	.section.active {
		transform: translateX(0);
	}

	.section.inactive {
		transform: translateX(-100%);
	}

	.message {
		position: absolute;
		opacity: 0;
		padding: var(--message-padding);
		max-width: 50%;
		text-align: center;
		line-height: 1.4;
		transform: translateZ(0);
		will-change: opacity, font-size;
		font-size: var(--base-font-size);
	}

	.message.fade-in {
		opacity: 1;
		transition: opacity var(--message-fade-in) ease-in;
	}

	.message.fade-out {
		opacity: 0;
		transition: opacity var(--message-fade-out) ease-out;
	}

	.toggle-button {
		font-family: GT America,Helvetica,sans-serif !important; 
		position: fixed;
		bottom: 20px;
		right: 20px;
		padding: 10px;
		background: rgba(255, 255, 255, 0.1);
		border: 1px solid rgba(255, 255, 255, 0.2);
		color: white;
		border-radius: 4px;
		cursor: pointer;
		font-family: inherit;
		backdrop-filter: blur(5px);
		transition: all 0.3s ease;
		z-index: 10;
	}

	.toggle-button:hover {
		background: rgba(255, 255, 255, 0.2);
	}
	

	.vibrant-section.active ~ .toggle-button {
		color: #343231;
		background: rgba(0, 0, 0, 0.1);
		border-color: rgba(0, 0, 0, 0.2);
	}

	.vibrant-section.active ~ .toggle-button:hover {
		background: rgba(255, 255, 255, 0.2);
	}

	.loading-screen {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #000;
		display: flex;
		justify-content: center;
		align-items: center;
		color: white;
		font-size: 1.2rem;
		z-index: 100;
	}

	footer {position: absolute;bottom:5px;left:5px;font-size:10px;color: #bebebe70;
		text-align: center;text-transform: uppercase;font-family: GT America,Helvetica,sans-serif;}

	footer a {color: #bebebe70;}
	
	@media (max-width: 768px) {
		.message {
			max-width: 80%;
			padding: 2rem;
			
		}

	}