
/* This is a comment */

body {
	background-color:floralwhite;
	font-family: "Barriecito", system-ui;
	padding: 0;
	margin: 0;
	background: url("images/blue.jpg")repeat;
	color: #6BECEB;
}

.navi {
	display: flex;
	flex-direction: row;
	gap: 150px;
	margin: auto;
	align-content: center;
	padding: 40px;
	box-sizing: border-box;
	border-radius: 200px;
	width: 800px;
	height: 10px;
	align-items: center;
	background-color: #DFF7F7;
}


.row {
	display: flex;
	flex-direction: row;
	margin: 20px 0;
}

.col {
	border: 1px solid cadetblue;
	border-radius: 15px;
	padding: 20px;
	width: 300px;
	height: auto;
	margin:auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: cadetblue;
	box-sizing: border-box;
}

.col img {
	width: 100%;
	height: auto;
	border-radius: 15px;
}

.contact {
	width:40%;
	border:1px solid cadetblue;
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	margin: 20px auto;
	padding: 10px;
	align-items: center;
	background-color: cadetblue;
}

input[type="text"] {
	margin: 10px;
	height: 30px;
	width: 300px;
	border-radius: 15px;
	background-color: lightblue;
}

textarea {
	height: 30px;
	width: 200px;
	margin: 10px;
	border-radius: 15px;
	background-color: lightblue;
}

button {
	margin: 5px auto;
	height: 40px;
	padding: 10px;
	border:0;
	width:96%;
	cursor: pointer;
	border-radius: 15px;
	background-color: lightblue;
}

button[type="submit"] {
	background: #184090;
	color:aliceblue;
	border-radius: 15px;
}

button[type="submit"]:hover {
	background:#53AEDF;
}

button[type="reset"] {
	background:#F2C3EC;
	color: darkblue;
	border-radius: 15px;
}

#main-title {
	font-family: "Rubik Bubbles", system-ui;
	padding: 30px 15px;
	border-bottom:1px dashed #B2B8E7;
	color: aliceblue;
	text-align: center;
}

h1, h2 {
	font-family: "Rubik Bubbles", system-ui;
	margin:0;
	color: aliceblue;
}
.sub-2 {
	text-align: center;
}

ul {
	list-style: square;
}

ul>li {
	color: honeydew;
}
.first-para::first-letter {
	font-weight: 700;
	font-size: 2em;
}

footer {
	text-align: center;
}

.nav-link:link, .nav-link:visited {
	color: lightblue;
	font-family: "Rubik Bubbles", system-ui;
	font-size: 1.25em;
	font-weight: 500;
	text-decoration: underline;
}

.nav-link:hover {
	color: #4CC096;
}

.navi {
	list-style: none;
}

a:link, a:visited {
	color: darkseagreen;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}


