@import url('./animations.css');


:root {
	--dark: rgb(8, 0, 34);
	--light-blue: #EBF4FF;
	--blue: #4857E0;
	--purple: #7b48e0;
	--buttons-blue: rgb(32, 32, 128);

	--page-content-size: 1250px;

	--title-max-width: 1150px;
	--subtitle-max-width: 600px;
}

html {
	scroll-behavior: smooth;
}

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

body {
	background: linear-gradient(to right, white, rgba(192, 212, 255, 0.4));
	color: var(--dark);
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Comfortaa, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

header {
	width: calc(100% - 40px);
    padding: 8px 20px;
    overflow: hidden;
}


button, a {
	font-family: Comfortaa;
	font-size: 15px;
}


.default-button {
	align-items: center;
	appearance: none;
	background-image: radial-gradient(100% 100% at 100% 0, #5adaff 0, #5468ff 100%);
	border: 0;
	border-radius: 6px;
	box-shadow: rgba(45, 35, 66, .4) 0 2px 4px,rgba(45, 35, 66, .3) 0 7px 13px -3px,rgba(58, 65, 111, .5) 0 -3px 0 inset;
	box-sizing: border-box;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-family: "JetBrains Mono",monospace;
	height: 48px;
	justify-content: center;
	line-height: 1;
	list-style: none;
	overflow: hidden;
	padding-left: 16px;
	padding-right: 16px;
	position: relative;
	text-align: left;
	text-decoration: none;
	transition: box-shadow .15s,transform .15s;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	white-space: nowrap;
	will-change: box-shadow,transform;
	font-size: 18px;
	font-weight: 400 !important;
}

.default-button:focus {
	box-shadow: #3c4fe0 0 0 0 1.5px inset, rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset;
}

.default-button:hover {
	box-shadow: rgba(45, 35, 66, .4) 0 4px 8px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset;
	transform: translateY(-2px);
	font-weight: bold !important;
}

.default-button:active {
	box-shadow: #3c4fe0 0 3px 7px inset;
	transform: translateY(2px);
}

main {
	padding: 20px;
	margin: 0 auto;
}

section {
	padding: 40px 20px;
	max-width: var(--page-content-size);
	margin: 60px auto;
	height: fit-content;
}


img {
	max-width: 100%;
}
.banner {
	margin: 0;
}

h1, h2, h3, h4 {
	font-family: "Bevan";
	font-weight: 400 !important;
	line-height: 1.2em;
}
h1 {
    color: #140050;
	font-size: 96px;
	max-width: var(--title-max-width);
}

.white-title {
	color: white;
}

main h1 {
	max-width: 600px;
}


h2 {
    color: rgb(20, 0, 80);
	font-size: 48px;
	font-weight: 400;
	line-height: 1.4em;
	max-width: var(--subtitle-max-width);
}

h3 {
    color: rgb(20, 0, 80);
	line-height: 1.4em;
	font-size: 24px;
	margin-top: 40px;
}

.text-link {
	text-decoration: none;
	font-weight: bold;
	color: var(--dark);
}

.text-link:hover {
	background: linear-gradient(to right, #667eea, #764ba2);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

input:hover {
	cursor: text;
}
textarea:hover {
	cursor: text;
}

a {
	text-decoration: none;
	color: var(--dark);
}

a:hover {
	font-weight: bold;
	cursor: pointer;
}


a *:hover {
	cursor: pointer;
}

.text-icon {
	width: 14px;
	margin-right: 10px;
	transition: .2s;
}


.small-icon {
	width: 20px;
}


button:hover {
	cursor: pointer;
}

button *:hover {
	cursor: pointer;
}

.left-title {
	margin: 0 auto 0 0;
}
.right-title {
	margin: 0 0 0 auto;
	text-align: right;
}


p {
	line-height: 1.5em;
}


.gradient-color {
	background: radial-gradient(100% 100% at 100% 0, #5adaff 0, #5468ff 100%);
	background-size: 200%;
	background-repeat: repeat;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: animate 10s linear infinite;
}


.gradient-button {
	display: block;
	background: linear-gradient(to right, #61c2f3, #9f4cf1);
	border-radius: 24px;
	border: none;
	color: white;
	height: fit-content;
	max-width: fit-content;
	padding: 12px 20px;
	float: right;
	font-size: 16px;
	cursor: pointer;
	text-decoration: none;
	transition: .2s;
}
.gradient-button:hover {
	background: rgb(32, 32, 128);
	
}
.gradient-button:active {
	transform: scale(.9);
}

.white-button {
	border-radius: 24px;
	border: none;
	color: rgb(0, 5, 47);
	height: min-content;
	padding: 12px 20px;
	max-width: fit-content;
	float: right;
	font-size: 14px;
	cursor: pointer;
	background-color: white;
	text-decoration: none;
	display: block;
	transition: .2s;
}
.white-button:hover {
	background: var(--buttons-blue);
	box-shadow: white 0px 0px 20px;
	color: white;
}
.white-button:active {
	transform: scale(.9);
}



.gradient-text {
	background: radial-gradient(100% 100% at 100% 0, #5adaff 0, #5468ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.right-svg {
	width: 28px;
	margin-left: 8px;
}

.left-svg {
	width: 20px;
	margin-right: 8px;
}


.vertical-flip {
	transform: rotateZ(180deg);
}

/* --------------- FORMS ---------------- */



.welcome-message {
	text-align: center;
	font-weight: 900;
}


/* --------------- COLUMNS ---------------- */

.flex-columns {
	margin: 40px 0;
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
	gap: 10px;
	text-align: left;
	max-width: 100%;
}

.flex-columns img {
	max-width: 50%;
	border-radius: 8px;
}




/* --------------- GRID SECTIONS --------------- */

.grid3x1 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 40px;
	margin-top: 80px;
}


@media screen and (max-width: 1150px) {
	.flex-columns {
		flex-wrap: wrap;
	}
}


@media screen and (max-width: 767px) {

	h1 {
		font-size: 48px;
	}

	h2 {
		font-size: 32px;
	}

	h3 {
		font-size: 22px;
	}


	section {
		padding: 10px;
		margin: 40px 0;
		text-align: left;
	}

	.flex-columns {
		display: block;
		padding: 10px;
	}
	.flex-columns > * {
		max-width: 100%;
	}


	.grid3x1 {
		grid-template-columns: 1fr;

	}

	article {
		width: 94%;
	}
}

