/* Google fonts Read Hat Display*/
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@300;400;500;600;700&display=swap');

/* Google fonts Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500;700&display=swap');

:root {
    --primary-color: #6638EB;
    --secondary-color: #FFD200;
    --black-color: #07122A;
    --gray-color: #ABAFB4;
}

body {
    background-color: #202020;
}

a {
    color: var(--primary-color);
}

.navbar-brand, section.content {
    font-family: 'Red hat display';
    color: var(--black-color);
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
}

.navbar {
    padding: 1rem 0;
}

a.nav-link {
    margin: 0 1rem;
    font-size: 16px;
    font-weight: 400;
    color: var(--black-color);
    font-family: 'Inter';
}

section.content {
    padding: 3rem;
    text-align: center;
    padding: 3rem 0;
}

.text {
    padding: 56px 0;
}

.text h1 {
    font-size: 48px;
    font-weight: bold;
}

.text p {
    font-size: 25px;
    font-weight: 400;
    min-width: 500px;
    max-width: 100%;
    margin: 0 auto;
    color: var(--gray-color);
}

footer {
    text-align: center;
}

footer p {
    padding: 1rem 0;
    font-size: 16px;
    color: var(--gray-color);
    font-weight: 400;
}

hr {
    color: var(--gray-color);
    height: 2px;
}

/* Small devices (landscape phones, 576px and up)*/

@media (max-width: 576px) {

    a.nav-link {
        margin: 0;
    }

    section.content img {
        width: 300px;
    }

    .text h1 {
        font-size: 25px;
    }

    .text p {
        font-size: 14px;
        font-weight: 400;
        min-width: 300px;
    }

    footer p {
        padding: 0.5rem 0;
        font-size: 14px;
    }

    hr {
        display: none;
    }


}

.spinner-wrapper {
	position: fixed;
	z-index: 999999;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #202020;
}

.spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 3.75rem;
	height: 1.25rem;
	margin: -0.625rem 0 0 -1.875rem;
	text-align: center;
}

.spinner > div {
	display: inline-block;
	width: 1rem;
	height: 1rem;
	border-radius: 100%;
	background-color: #F0F0F0;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.spinner .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
	0%, 80%, 100% { -webkit-transform: scale(0); }
	40% { -webkit-transform: scale(1.0); }
}

@keyframes sk-bouncedelay {
	0%, 80%, 100% { 
		-webkit-transform: scale(0);
		-ms-transform: scale(0);
		transform: scale(0);
	} 40% { 
		-webkit-transform: scale(1.0);
		-ms-transform: scale(1.0);
		transform: scale(1.0);
	}
}