* {
	margin: 0;
	padding: 0;
}

body {
	/* font-family: "Quicksand", sans-serif;
	font-optical-sizing: auto; */

	font-family: "Raleway", sans-serif;
	font-optical-sizing: auto;
}
header {
	display: flex;
	justify-content: space-between;
	padding: 2em 4em;
	align-items: center;
	/* font-family: "Raleway", sans-serif;
	font-optical-sizing: auto; */

	font-family: "Exo 2", sans-serif;
	font-optical-sizing: auto;
}

.brand-logo {
	display: flex;
	align-items: center;
	gap: 0.5em;
}
.brand-logo img {
	width: 50px;
}

.links ul,
.auth-nav ul {
	display: flex;
	list-style-type: none;
	gap: 1.5em;
	font-size: 1.1rem;
}
ul li a {
	color: inherit;
	text-decoration: none;
	font-weight: 400;
	transition: 2s ease-in-out;
}
ul li:hover {
	border-bottom: 2px grey dashed;
	cursor: pointer;
}

.hero {
	/* margin: 1em 0; */
	padding: 0 3em;
	display: flex;
	justify-content: center;
	align-items: center;
}
.hero h1 {
	/* margin: 1em 0; */
	font-size: 3rem;
	max-width: 500px;
}
.hero img {
	width: 500px;
}
.hero-btn {
	border: none;
	outline: none;
	padding: 1em 1.3em;
	font-size: 1.3rem;
	margin: 1em 0;
	border-radius: 5px;
	cursor: pointer;
	background-color: skyblue;
	font-family: inherit;
	font-weight: bold;
	color: white;
}
.hero-btn:hover {
	background-color: #00bfff;
}

.second-cta {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 2em;
	gap: 1em;
}
.second-cta h3 {
	font-size: 2rem;
	font-family: "Exo 2", sans-serif;
}
.second-cta span {
	color: #00bfff;
}
.second-cta button {
	border: none;
	outline: none;
	padding: 1em 1.3em;
	font-size: 1.3rem;
	margin: 1em 0;
	border-radius: 5px;
	cursor: pointer;
	background-color: skyblue;
	font-family: inherit;
	font-weight: bold;
	color: white;
}
.second-cta button:hover {
	background-color: #00bfff;
}

.why-scissor {
	padding: 0 3em;
}
.card-grid {
	display: flex;
	gap: 2em;
}

.second-cta {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 2em;
	gap: 1em;
}

/* The Modal (background) */
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0, 0, 0); /* Fallback color */
	background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
	background-color: #fefefe;
	margin: 15% auto; /* 15% from the top and centered */
	padding: 20px;
	border: 1px solid #888;
	width: 80%; /* Could be more or less, depending on screen size */
}
.modal-header {
	display: flex;
	justify-content: space-between;
}
.modal-body{
	display: flex;
	flex-direction: column;
	gap: 1em;

}

/* The Close Button */
.close {
	color: #aaa;
	/* float: right;
	top: 0; */
	font-size: 28px;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

.error {
	color: red;
	display: none;
}

footer {
	text-align: center;
	font-size: 1rem;
	padding: 1em;
}
