@reference "tailwindcss";

.roboto-1 {
	font-family: 'Roboto', sans-serif;
	font-optical-sizing: auto;
	font-weight: 100;
	font-style: normal;
	font-variation-settings: 'wdth' 100;
}

.roboto-2 {
	font-family: 'Roboto', sans-serif;
	font-optical-sizing: auto;
	font-weight: 200;
	font-style: normal;
	font-variation-settings: 'wdth' 100;
}

.roboto-3 {
	font-family: 'Roboto', sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	font-variation-settings: 'wdth' 100;
}

.roboto-4 {
	font-family: 'Roboto', sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-variation-settings: 'wdth' 100;
}

.roboto-5 {
	font-family: 'Roboto', sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-variation-settings: 'wdth' 100;
}

.roboto-6 {
	font-family: 'Roboto', sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	font-variation-settings: 'wdth' 100;
}

.roboto-7 {
	font-family: 'Roboto', sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
	font-variation-settings: 'wdth' 100;
}

.roboto-8 {
	font-family: 'Roboto', sans-serif;
	font-optical-sizing: auto;
	font-weight: 800;
	font-style: normal;
	font-variation-settings: 'wdth' 100;
}

.roboto-9 {
	font-family: 'Roboto', sans-serif;
	font-optical-sizing: auto;
	font-weight: 900;
	font-style: normal;
	font-variation-settings: 'wdth' 100;
}

* {
	font-family: 'Roboto', sans-serif;
	outline: none;
}

html,
body {
	height: 100%;
}

body {
	margin: 0;
}

button {
	cursor: pointer;
}

.app-box {
	perspective: 1000px;
}

.bg-image {
	background-image: url('../images/background.png');
	background-repeat: no-repeat;
	background-size: cover;
}

.box-content {
	transition: all 0.25s ease;
	transform-style: preserve-3d;
	will-change: transform;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
	width: 100%;
	max-width: 400px;
}

.box-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	background: radial-gradient(circle at calc(100% - var(--mouse-x, 50%)) calc(100% - var(--mouse-y, 50%)), rgba(255, 255, 255, 0.2), transparent 40%);
	opacity: 0.5;
	transition: opacity 0.2s ease;
	border-radius: inherit;
}

.box-content:hover {
	cursor: pointer;
	box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
}

.fade-in-up {
	animation: fadeInUp 0.5s ease-out;
	animation-fill-mode: both;
}

.inner-content {
	backface-visibility: hidden;

	transition: transform 0.2s ease-out;
	will-change: transform;
	transform-style: preserve-3d;
}

.box-content:hover {
	box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
}

.box-content:hover .inner-content {
	text-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

#header {
	transition: all 250ms ease;
}

form label {
	font-weight: 700;
	margin: 0;
	padding: 0;
}

form input,
form textarea {
	display: block;
	width: 100%;
	height: 38px;
	padding: 8px 12px;
	margin-bottom: 10px;
	font-size: 14px;
	line-height: 1.428571429;
	color: #333333;
	vertical-align: middle;
	background-color: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 0.4rem;
}

form textarea {
	height: 200px;
}
