@charset "utf-8";
/* CSS Document */

body {
	padding: 0;
	margin: 0;
	background-color: mintcream;
	font-family: "Poppins", sans-serif;
}

.container {
	width: 90%;
	margin :auto;
	padding: 4%;
	box-sizing: border-box;
}

.nav {
	min-height: 90px;
}

.navi {
	display: flex;
	list-style: none;
	justify-content: center;
	align-items: center;
	gap:4%;
}

.navi a:link, a:active {
	font-size: 1.5em;
	color: blue;
	text-decoration: none;
}

.navi a:hover {
	color: crimson;
	text-decoration: underline;
}

.main {
	display: flex;
}

.aside-left {
	min-width:60%;
	box-sizing: border-box;
}

.aside-right {
	min-width: 40%;
	justify-content: space-evenly;
}

.imgmain {
	float: left;
	width: 600px;
	height: 400px;
	border-radius: 20px;
}

.row {
	display: flex;
	justify-content: center;
	text-align: center;
	gap:4%;
}

.column {
	min-width: 30%;
	padding: 2%;
	box-sizing: border-box;
}

.footer {
	height: 90px;
	text-align: center;
	font-size: 10pt;
	padding-top: 3%;
}

.submit-button {
    background-color: dodgerblue;
    border: none;
    color: white;
    padding: 15px 32px;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-button:hover {
    background-color: dodgerblue;
    transform: scale(1.05);
}

.submit-button:active {
    background-color: #397d39;
    transform: scale(1);
}

@media (max-width:992px) {
	.navi {
		display: block;
		text-align: center;
		padding: 0;
	}
	.main {
		display: block;
	}
	.aside-left {
		width: 100%;
	}
	.aside-right {
		width: 100%;
	}
	
	.row {
		display: block;
	}
	.column {
		width: 100%;
	}
	footer {
		display: block;
		text-align: center;
	}
}