@charset "UTF-8";
/* Comment */

body {
	padding: 0;
	margin: 0;
	font-family: 'Gabarito', cursive;
	background-color: aliceblue;
}

footer {
	color:dimgray;
}

h2, h3 {
	color:#176DC0;
	text-transform: capitalize;
	border-bottom: 2px solid #176DC0;
}

.title {
	text-align: center;
	border: none;
}

h1 {
	text-transform: uppercase;
	color:#176DC0;
	border-bottom: 2px solid #176DC0;
	padding-bottom: 5%;
}

p {
	color: black;
}

.btn-submit {
	padding: 3% 5%;
	border: none;
	border: 2px solid transparent;
	border-radius: 5px;
	
}

.btn-submit:hover {
	border: 2px solid #176DC0;
	color: coral;
	background-color: aquamarine;
}

.container {
	width: 80%;
	margin: auto;
	padding: 1%;
	box-sizing: border-box;
}

.navi {
	list-style: none;
	display: flex;
	gap: 5%;
	justify-content: center;
	align-content: center;
	min-height: 80px;
}


a:link {
	color:cornflowerblue;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.navi a:link {
	color: coral;
	text-decoration: none;
	font-size: 1.5em;
}

.navi a:hover {
	color: crimson;
	padding-bottom: 5%; /* Padding bottom is set to add more space between the text and the border */
	border-bottom: 1px solid crimson; /*Instead of using text-decoration:underline, you can also user border-bottom */
}

.navi a:visited {
	color: blueviolet;
}

.main {
	display: flex;
}

.aside-left {
	min-width: 60%;
	padding: 1%;
	box-sizing: border-box;
}

.aside-right {
	min-width: 40%;
	padding: 1%;
	box-sizing: border-box;
}

.img-main {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.row {
	display: flex;
	gap:2%;
	justify-content: center;
	align-content: center;
}

.column {
	min-width: 30%;
	padding: 2%;
	box-sizing: border-box;
}

.column h2, p {
	text-align: center;
}
.footer {
	height: 90px;
	text-align: center;
	font-size: 10pt;
	padding-top: 3%;
}

/* This is @media query. We use this selector type to create a responsive website*/

@media (max-width:992px)/* The max-width is to set the breakpoint for smaller devices */ {
	.main {
		display: block; /* in normal view, the display of .main is flex. In smaller devices, we overide the display to become block*/
	}
	.row {
		display: block; /* in normal view, the display of .row is flex. In smaller devices, we overide the display to become block*/
	}
	.navi {
		display: block; /* in normal view, the display of .row is flex. In smaller devices, we overide the display to become block*/
		padding: 0; /* padding is set to 0 because to remove the space on the right*/
		text-align: center;
	}
	
	.aside-left {
		width: 100%; /* in normal view, the width of .aside-left is set to 60%. In smaller devices, we change the widht to 100%*/
		padding: 1%;
		margin: 10px auto;
	}
	
	.aside-right {
		width: 100%; /* in normal view, the width of .aside-right is set to 60%. In smaller devices, we change the widht to 100%*/
		padding: 1%;
		margin: 10px auto;
		text-align: center;
	}
	h1, h2, h3 {
		border: none;
		padding-bottom: 0;
	}
}


