@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap');

:root {
	--bg: #1a202c;
	--theme: #70eeff;
	--theme-hover: #00e1ff;
	--theme-active: #00bdd7;
	--muted: #282b34;
	--muted-hover: #3b3e47;
	--muted-active: #242730;
	--card-bg: #283040;
	--content: #171923;
	--nav: #efefef;
	--text: #efefef;
	--text-grayed: #cbd5e0;
	--shadow: #000000 0px 4px 6px;
	--shadow-hover: #000000 0px 15px 30px;
	--shadow-active: #000000 0px 0px 0px;
}

* {
	font-family: 'Nunito', sans-serif;
}

html, body {
	margin: 0;
	padding: 0;
	width: 100%;
}

body {
	background-color: var(--bg);
}

nav {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 75px;
	background-color: var(--bg);
	z-index: 1000;
	box-shadow: 0 0 26px 0 #000000;
}

.nav-logo-container-responsive {
	display: block;
}

.nav-logo {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translate(0, -50%);
	width: 50px;
	height: 50px;
}

.btn {
	background-color: var(--theme);
	box-shadow: var(--shadow);
	color: var(--content);
	width: fit-content;
	height: fit-content;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 17px;
	padding-right: 17px;
	border: none;
	border-radius: 5px;
	font-weight: bold;
	font-size: 1.1rem;
	cursor: pointer;
	outline: 0;
	transition: background-color 0.2s ease-in-out,
				box-shadow 0.2s ease-in-out,
				color 0.2s ease-in-out,
				border 0.2s ease-in-out;
}

.btn:hover {
	background-color: var(--theme-hover);
	box-shadow: var(--shadow-hover);
}

.btn:active {
	background-color: var(--theme-active);
	box-shadow: var(--shadow-active);
}

.btn:focus {
	outline: 0;
}

.btn > i {
	margin-right: 5px;
}

.top-right-button {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translate(0, -50%);
}

.center-btn {
	margin-top: 55px;
	margin-left: 50%;
	transform: translate(-50%, 0);
}

.large-btn {
	padding-top: 13px;
	padding-bottom: 13px;
	padding-left: 30px;
	padding-right: 30px;
}

main {
	margin-top: 192px;
}

main.main-lower {
	margin-top: 125px;
	overflow-x: hidden;
}

.main-home {
	animation: main-fade 2s;
}

@keyframes main-fade {
	0% {
		opacity: 0;
		transform: translate(0, 75px);
	}
	20% {
		opacity: 0;
		transform: translate(0, 75px);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0px);
	}
}
main, main * {
	z-index: 5;
}

.title {
	color: var(--text);
	text-align: center;
	font-size: 4.5rem;
	margin: 0;
	line-height: 1.1em;
	width: calc(100% - 100px);
	max-width: 1000px;
	margin-left: 50%;
	transform: translate(-50%, 0);
	/*animation: title-fade 2s;*/
}

@keyframes title-fade {
	0% {
		opacity: 0;
		transform: translate(-50%, 75);
	}
	20% {
		opacity: 0;
		transform: translate(-50%, 75px);
	}
	100% {
		opacity: 1;
		transform: translate(-50%, 0px);
	}
}

.solana-logos, .solana-logos * {
	z-index: -1;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.solana-logos > .solana-logo {
	position: fixed;
	width: 60px;
	animation: logo-fade 4s;
	opacity: 0.35;
}

.description {
	color: var(--text);
	width: calc(100% - 40px);
	max-width: 500px;
	margin-left: 50%;
	transform: translate(-50%, 0);
	font-size: 1rem;
}

.description > * {
	color: var(--text);
}

.input-title {
	text-align: center;
	color: var(--text) !important;
	text-decoration: none;
	margin-top: 20px;
	margin-bottom: 5px;
	font-weight: 600;
	font-size: 1.2rem;
}

.input-title * {
	color: var(--text) !important;
	text-decoration: none;
}

.input-title .link {
	text-decoration: underline !important;
}

.mint-input, .mint-select {
	margin-left: 50%;
	width: calc(100% - 40px);
	max-width: 500px;
	box-sizing: border-box;
	font-size: 1.1rem;
	color: var(--text);
	background: none;
	border: 3px solid var(--text);
	border-radius: 5px;
	padding: 5px;
	outline: none !important;
	transform: translate(-50%, 0);
}

.mint-select {
	font-size: 0.9rem;
}

.mint-input::-webkit-outer-spin-button, .mint-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.mint-input {
	-moz-appearance: textfield;
}

.small-info {
	color: var(--text);
	font-size: 0.9rem;
}

.small-info > a {
	color: var(--text);
	font-size: 0.9rem;
}

.info {
	text-align: center;
	color: var(--text);
	font-size: 1.3rem;
}

.info > a {
	color: var(--text);
	font-size: 1.3rem;
}

.mint-btn {
	margin-left: 50%;
	transform: translate(-50%, 0);
	margin-top: 20px;
	margin-bottom: 20px;
}

.modal-overlay {
	z-index: 10;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	transition: background-color 0.7s ease-in-out;
}

.modal-overlay-invisible {
	background-color: rgba(0, 0, 0, 0) !important;
}

.connect-modal {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 15;
	width: 400px;
	max-width: calc(100% - 40px);
	padding: 20px;
	padding-bottom: 10px;
	box-sizing: border-box;
	background-color: var(--card-bg);
	border-radius: 20px;
	box-shadow: 0 0 26px 0 #000000;
}

.modal-window {
	position: fixed;
	left: 50%;
	top: 0%;
	transform: translate(-50%, -100%);
	z-index: 15;
	width: 675px;
	max-width: calc(100% - 40px);
	padding: 40px;
	box-sizing: border-box;
	background-color: var(--card-bg);
	border-radius: 20px;
	box-shadow: 0 0 26px 0 #000000;
	transition: top 0.7s ease-in-out, transform 0.7s ease-in-out;
}

.modal-window-visible {
	top: 50%;
	transform: translate(-50%, -50%);
}

.modal-window > .modal-title {
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
	color: var(--text);
	margin-bottom: 20px;
}

.modal-window > .modal-description {
	font-size: 1.2rem;
	color: var(--text);
	margin-bottom: 40px;
}

.modal-window > .modal-description > a {
	font-size: 1.2rem;
	color: var(--text);
}

.modal-window > .modal-buttons {
	text-align: center;
}

.modal-buttons > .modal-btn {
	margin: 5px;
}

.modal-buttons > .modal-btn-secondary {
	color: var(--text);
	background-color: var(--muted);
}

.modal-buttons > .modal-btn-secondary:hover {
	background-color: var(--muted-hover);
}

.modal-buttons > .modal-btn-secondary:active {
	background-color: var(--muted-active);
}

.wallet-row {
	width: 100%;
	height: 50px;
	padding: 10px;
	box-sizing: border-box;
	background-color: var(--bg);
	margin-bottom: 10px;
	border-radius: 10px;
	cursor: pointer;
}

.wallet-row > img {
	height: 100%;
	width: auto;
	display: inline-block;
	vertical-align: middle;
}

.wallet-row > p {
	display: inline-block;
	vertical-align: middle;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 10px;
	color: var(--text);
}

.wallet-row:active {
	background-color: var(--content);
}

@keyframes logo-fade {
	0% {
		opacity: 0;
	}
	60% {
		opacity: 0;
	}
	100% {
		opacity: 0.35;
	}
}

@media screen and (max-width: 1025px) {
	.title {
		font-size: 4rem;
	}
}

@media screen and (max-width: 950px) {
	.title {
		font-size: 3.5rem;
	}
}

@media screen and (max-width: 900px) {
	.title {
		font-size: 3.5rem;
	}
}

@media screen and (max-width: 750px) {
	.title {
		font-size: 3rem;
	}
}

@media screen and (max-width: 725px) {
	.modal-window {
		padding: 30px;
	}
	.modal-window > .modal-title {
		font-size: 1.5rem;
		font-weight: bold;
		margin-bottom: 10px;
	}
	.modal-window > .modal-description {
		font-size: 0.85rem;
		margin-bottom: 15px;
	}

	.modal-window > .modal-description > a {
		font-size: 0.85rem;
	}
}

@media screen and (max-width: 510px) {
	.title {
		font-size: 2.5rem;
	}

	.mint-select {
		font-size: 0.8rem;
	}
}

@media screen and (max-width: 470px) {
	.mint-select {
		font-size: 0.7rem;
	}
}

@media screen and (max-width: 425px) {
	.mint-select {
		font-size: 0.6rem;
	}
}