/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

/* Body */
:root {
	--primary-color: #23272a;
	--secondary-color: black;
	--grey-text: white;
	--error-color: #fc4747;
	--purple: red;
	--light-purple: red;
}

* {
	font-family: 'Lato', sans-serif;
	box-sizing: border-box;
	padding: 0px;
	margin: 0px;
}

html {
	scroll-behavior: smooth;
	max-width: 100%;
	overflow-x: hidden;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 30%;
    position: relative;
    flex-basis: 60%;
    display: flex;
    align-items: center;
    transform: translateY(0px);
    animation: float 6s ease-in-out infinite;
    border-radius: 50%;
}

@keyframes float{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-30px);
    }
    100%{
        transform: translateY(0px);
    }
}

body {
	height: 100%;
	flex-direction: column;
	background-color: black;
	line-height: 1.6;
	color: #ffffff;
	max-width: 100%;
	overflow-x: hidden;
	font-family: Arial,sans-serif;
}

/* Buttons */
.btn {
	border: none;
	margin: 10px;
	color: #ffffff;
	cursor: pointer;
	font-size: 16px;
	padding: 10px 30px;
	border-radius: 5px;
	display: inline-block;
	background-color: black;
	box-shadow: black;
	transition: all 0.5s;
}

.btn-blurple {
	background-color: red;
}

.btn i {
	top: 3px;
	font-size: 125%;
	margin: 0 4px 0 0;
	position: relative;
}

/* Nav Bar */
.navbar {
	color: #ffffff;
	height: 70px;
	font-weight: 400;
	background-color: var(--secondary-color);
	border-bottom: var(--purple) 5px solid;
}

.navbar ul {
	display: flex;
}

.navbar a {
	color: var(--grey-text);
	padding: 10px;
	margin: 0;
	padding: 0 10px;
}

.navbar a:hover {
	color: #ffffff;
}

.navbar .currentPage,
.navbar .currentPage:hover {
	color: var(--light-purple);
}

.navbar .flex {
	justify-content: space-between;
}

.navbar .logo {
	margin: 0 10px;
}

.navbar .logo img {
	height: 75%;
	margin: auto 5px;
}

.navbar .logo p {
	font-weight: 400;
	font-size: 1.5rem;
	padding: 0 2px;
	color: #ffffff;
}

/* Footer */
.footer {
	width: 100%;
	border-top: var(--purple) 5px solid;
	padding: 30px;
	height: 200px;
	background-color: var(--secondary-color);
}

.footer h4 {
	color: var(--light-purple);
	font-weight: 400;
	font-size: 1.5rem;
}

.footer .flex {
	justify-content: flex-end;
}

.footer .footernav {
	margin: 0 25px;
}

.footernav a:hover {
	color: #ffffff;
}

/* Animations */
.button span {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.5s;
}

.button span:after {
	font-size: 25px;
	content: '\00bb';
	position: absolute;
	opacity: 0;
	top: -10px;
	right: -20px;
	transition: 0.5s;
}

.button:hover span {
	padding-right: 25px;
}

.button:hover span:after {
	opacity: 1;
	right: 0;
}

/*Stats*/

#stats[data-v-74477944] {
    display: flex;
    grid-gap: 25px;
    padding: 35px 10%;
    margin: 0 auto;
    max-width: 8000px;
}

.card[data-v-74477944] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
    background-color: black;
    padding: 15px 20px;
    width: 100%;
    border-radius: 0.375em;
    box-shadow: 0 0 5px #00000075;
    transition: .4s;
}

.card .title[data-v-74477944] {
    color: #ccc;
    font-size: 1.5rem;
}

.card .value[data-v-74477944] {
    font-size: 2.25rem;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
	.navbar {
		height: auto;
		font-size: 1.05rem;
	}

	.navbar ul {
		margin: 0 0 15px 0;
	}

	.navbar .flex {
		flex-direction: column;
	}

	.navbar .logo {
		margin: 10px 0 5px 0;
		flex-direction: row;
	}

	.navbar .logo p {
		font-size: 1.5rem;
	}

	.navbar .logo img {
		height: 50px;
	}
}

@media (max-width: 450px) {
	.navbar {
		justify-content: center;
		width: 100%;
		height: auto;
		font-size: 1rem;
	}

	.navbar .logo:active ul {
		display: block;
	}

	.navbar ul {
		margin: 0 0 15px 0;
	}

	.navbar .flex {
		flex-direction: column;
	}

	.navbar ul {
		flex-direction: column;
		align-items: center;
	}

	.navbar li {
		margin: 5px 0;
		font-size: 1rem;
	}

	.navbar .logo {
		margin: 10px 0 5px 0;
		flex-direction: row;
	}

	.navbar .logo p {
		font-size: 1.5rem;
	}

	.navbar .logo img {
		height: 50px;
	}

	.footer {
		height: auto;
	}

	.footer .branding p,
	.footer .branding h4 {
		text-align: center;
	}

	.footer .grid {
		grid-template-columns: 1fr;
		grid-template-rows: 1fr;
	}

	.footer .flex {
		width: 100%;
		flex-direction: column;
	}

	.footer .flex ul {
		text-align: center;
	}

	.footer li {
		margin: 5px 0;
	}

	#stats[data-v-74477944] {
		display: flex;
		grid-gap: 25px;
		padding: 35px 10%;
		margin: 0 auto;
		max-width: 1000px;
	}

	/* Showcase */
.showcase {
	height: auto;
	position: relative;
}

.showcase h1 {
	font-size: 40px;
	position: center;
	text-align: center;
}

.showcase p {
	margin: 10px 0;
	text-align: center;
	margin-bottom: 15%
}

.showcase .flex {
	overflow: visible;
	justify-content: center;
}

/* Panels */
.features {
	height: auto 500px;
	margin: 50px 0;
}

.features h3 {
	text-align: center;
	font-size: 25px;
	font-weight: 400;
}

.features p {
	text-align: center;
}

.features img {
	border-radius: 5px;
	justify-self: center;
	width: 75%;
}

.mobile {
	display: none;
}

/* Tablet Responsive */
@media (max-width: 768px) {
	.features img {
		width: 100%;
	}
}

@media (max-width: 450px) {
	.navbar{
		display: flex;
		margin: 0;
		padding: 1.3rem;
		justify-content: flex-end;
	}
	.navbar .nav .ui{
		display: none;
	}
	.footer{
		 margin-top: 15px;
	}
}
}

@media screen and (max-width: 600px) {
#stats[data-v-74477944] {
    flex-direction: column;
    padding: 25px 10%;
    align-items: center;
}
.footer{
	display: flex;
	margin-top: 15%;
}
.showcase .p{
	display: none;
}
.widget {
	display: none;
}
}
.widget {
	margin: 10px 0;
	text-align: center;
	margin-bottom: 15%
}
