@charset "UTF-8";



:root {
	--background-rgb: 246, 246, 246;
	--text-primary-rgb: 0, 0, 0;
	--text-secondary-rgb: 255, 255, 255;
	--nav-background-rgb: 254, 254, 254;

	--btn-bg-responsive-rgb: 29, 30, 31;
	--btn-bg-responsive-alt-rgb: 29, 30, 31;
	--foreground-rgb: 
}
[data-theme="dark"] {
	--background-rgb: 112, 128, 144;
	--text-primary-rgb: 255, 255, 255;
	--text-secondary-rgb: 0, 0, 0;
	--nav-background-rgb: 0, 0, 0; 

	--btn-bg-responsive-rgb: 246, 246, 246;
	--btn-bg-responsive-alt-rgb: 100, 100, 100;
}

* {
	box-sizing: border-box;

	transition: color 0.5s ease;
	transition: background-color 0.5s ease;

}






body {
	background-color: rgb(var(--background-rgb));
	color: rgb(var(--text-primary-rgb));
	text-align: center;
	font-family: "Comic Sans MS", "Comic Sans";
	min-height: 50vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.text h1 {
	color: var(--text-primary-rgb);
	position: relative;
	bottom: -2vh
}





\\yes i got inspried with flex from john i actualy decided to learn itz\\
#top-nav {
	background-color: rgb(var(--nav-background-rgb));
	width: 100%;
}

#top-nav > div {
	display: flex;
	align-items: center;
	height: 3em;
	margin: auto;
	width: min(1600px, 100%);
}

#nav-buttons .btn {
	margin-left: 0.5em;
	cursor: pointer;
}

#nav-buttons {
	display: flex;
	flex: 2 1 0;
}

#top-nav p {
	font-size: x-large;
	margin: 0 3em 0 3em;
}
p {
    font-size: large;
    text-decoration: none;
}


#nav-buttons .btn:last-child {
	margin-left: auto;
	margin-right: 0.5em;
	cursor: pointer;
}





.btn {
	background-color: rgb(var(--btn-bg-responsive-rgb));
	color: rgb(var(--text-secondary-rgb));
	text-decoration: none;
	padding: .5em;
	border-radius: .25em;
	cursor: pointer;
}
bot {
	size: 100px;
	position: inherit;
}
@media (max-width: 768px) {
	.bot {
	  position: relative;
	  right: 0px;
	  bottom: 10px
	}
	}
@media(max-width: 768px) {
	.text h1 {
		color: transparent !important;
		position: relative;
		bottom: 4vh;
		text-decoration-line: none;
		
		
	}
	
}
@media(max-width: 768px) {
	.text p {
		
		position: relative;
		bottom: -30vh
	}
	
}

.flex-row {
	margin-left: auto;
	margin-right: auto;
	width: 90%;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	text-align: justify;
	gap: 3em;
}

.flex-col {
	max-width: 50%;
	align-items: center;
	display: flex;
	flex-direction: column;
	min-height: 5em;
}







.toast .toast-content {
	margin-left: .5em;
	margin-right: .5em;
}

.toast .toast-dismiss {
	color: white;
	background-color: transparent;
	border: none;
}

.toast .toast-dismiss:hover {
	cursor: pointer;
}

#top-nav i {
	display: none;
	position: absolute;
	top: 1.65em;
	right: 1em;
}

#top-nav i:hover {
	cursor: pointer;
}

@keyframes blink-caret {
	from, to { border-color: transparent }
	50% { border-color: white; }
}


@media only screen and (max-width: 768px) {
	#top-nav i {
		display: unset;
	}

	#top-nav p {
		margin: 1;
		width: 100%;
		text-align: center;

    
	}

	#nav-buttons {
		border-bottom: .25em solid rgb(var(--background-rgb));
		display: none;
		flex-direction: column;
		position: absolute;
		top: 3em;
		width: 100%;
	}

	#nav-buttons .btn {
		border-radius: 0;
		margin: 0;
	}

	#nav-buttons .btn:last-child {
		margin: 0;
	}
	
	.flex-row {
		flex-direction: column;
		align-items: center;
		justify-content: space-evenly;
	}
}
