@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");

:root {
	--royal-blue-traditional: #0a2463ff;
	--imperial-red: #fb3640ff;
	--davys-gray: #605f5eff;
	--picton-blue: #48abd5ff;
	--platinum: #e2e2e2ff;
	--black: black;

	--fixed-footer-size: 3.5rem;

}

* {
	padding: 0;
	margin: 0;

	transition: all 0.5s ease-in-out;
}

html,
body {
	min-height: 100%;
}

body {
	font-family: "Montserrat", sans-serif;
	background-color: var(--platinum);


}

main {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

h1 {
	font-size: 0.75rem;
	color: black
}

.header {
	font-size: 1.1rem;
	font-weight: 700;
	margin-top: 1rem;
	color: black;
}

.sub_header {
	font-size: 0.8rem;
	font-weight: 700;
	margin-top: 0.25rem;
	color: black;
}

a {
	text-decoration: none;
	font-size: 1.125rem;
	font-weight: 600;
}

#footer {
	margin-top: 5rem;
	position: relative;
	bottom: var(--fixed-footer-size);
	width: 100%;
	margin-bottom: 1rem;
}

.footer-fixed {
	position: fixed;
	bottom: 0px;
	width: 100%;
	height: var(--fixed-footer-size);


	justify-content: center;
	text-align: center;

	background-color: var(--imperial-red);
}

#center {
	text-align: center;
}

.logo {
	position: relative;
	height: 100%;
	width: 100%;
	border-radius: 50%;
	margin-top: 8%;
	object-fit: cover;
}

.logoContainer {
	margin: 1rem 0;
	position: relative;
	height: 200px;
	aspect-ratio: 1;
	border-radius: 50%;
	margin-bottom: 2rem;
}

.links {
	display: flex;
	flex-direction: column;
}

.link {
	height: 2.75rem;
	width: 600px;

	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--platinum);

	margin: 0.5rem 0;
	border-radius: 15px;

	font-size: 0.75rem;

	background: var(--picton-blue);
}

.warning {
	font-size: 2rem;
	font-weight: 700;
	margin-top: 2rem;
	margin-bottom: 2rem;
	color: red;
}

.greetings {
	font-size: 1.5rem;
	font-weight: 700;
	margin-top: 2rem;
	margin-bottom: 2rem;
	color: black;
}

.about {
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 2rem;
	color: black;
}

.link span {
	width: 80%;
	text-align: center;
}

.link img {
	height: 2rem;
	aspect-ratio: 1;

}


.linkIcon {
	height: 2rem !important;
	aspect-ratio: 1;
}


.link:hover {
	filter: drop-shadow(0px 5px 1px var(--royal-blue-traditional));
	transform: scale(1.05);
}

.link>* {
	transition: all 0.3s ease-in-out;
	transition-delay: 0.1s;
}

.link:hover>* {
	transform: scale(1.1);
	filter: drop-shadow(0px 5px 1px var(--davys-gray));
}

@media (max-width: 600px) {
	body {
		background-size: 100%;
	}

	.logo img {
		width: 200px;
	}

	.link span {
		width: 70%;
		text-align: center;
	}

	.link {
		width: 95vw;
	}

	.link:hover {
		transform: scale(1.01);
	}
}


.dark-mode-text {
	color: white;

}

.dark-mode-links {
	color: rgb(122, 6, 6);
	background: #c0ff01bf;
}

.dark-mode-body {
	color: white;
	background-image: linear-gradient(rgb(0, 0, 0), #ac1212);
}

.dark-mode-fixed-footer {
	color: white;
	background-color: var(--royal-blue-traditional);
}