@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&family=Nunito+Sans:wght@300;400;600;700;800&display=swap");

:root {
	--Roboto: "Roboto", sans-serif;
	--OpenSans: "Open Sans", sans-serif;
	--Lato: "Lato", sans-serif;
}

body {
	background: #fcf4eb !important;
	font-family: var(--Roboto) !important;
}

a {
	text-decoration: none !important;
	color: rgb(19, 19, 19) !important;
}

.container {
	width: 100vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 50px;
	padding-top: 20px;
}

.col {
	padding: 40px !important;
}

.icon {
	font-size: 3em;
}

.icon:hover {
	color: rgb(57, 0, 148);
}

.card {
	height: 100%;
	background: #fff;
	box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
	transition: 0.2s ease-in-out;
}

.card:hover {
	transform: scale(1.05);
	transition: 0.2s ease-in-out;
	cursor: pointer;
}

.card:hover .card-body {
	background-color: #a5ff70;
	transition: 0.2s ease-in-out;
}

.card-body {
	padding: 22px !important;
	transition: 0.2s ease-in-out;
}

.card-title {
	margin-bottom: 20px !important;
}

.card-text {
	text-align: left;
}

.box {
	padding-top: 60px;
	text-align: center;
}
