@charset "UTF-8";


body {
	background-color: antiquewhite;
	padding: 0;
	margin: 0;
	 font-family: "Source Code Pro", monospace;
}

.main-head, .sub-head {
	font-family: "Bitcount Grid Double", system-ui;
	color:#370E4D;
}

footer p {
	font-size: 0.65rem;
	color: hotpink;
}

.container {
	width: 80%;
	margin: 0 auto;
	
}

.header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin: 2rem 0;
	
}

.navbar {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	
}

.navbar a {
	color: darkorchid;
	text-decoration: none;
	padding: 1rem;
	font-weight: 700;
	
}

.navbar a:hover {
	color:darkslateblue;
}

.main {
	display: flex;
	flex-direction: row;
	
}

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

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

img {
	width: 100%;
	height: auto;
}

.btn-main {
	display: block;
	width: 120px;
	height: 30px;
	background-color:darkorchid;
	color:antiquewhite;
	text-decoration: none;
	padding: 1rem 1rem 0.5rem 1rem;
	text-align: center;
	border-radius: 30px;
	border: 2px solid transparent;
	font-weight: 600;
	
}

.btn-main:hover {
	background-color:antiquewhite;
	border: 2px solid #C5A5FD;
	color:darkorchid;
	
}

.btn-col {
	display: block;
	width: 120px;
	height: 30px;
	background-color:antiquewhite;
	color:darkorchid;
	text-decoration: none;
	padding: 1rem 1rem 0.5rem 1rem;
	text-align: center;
	border-radius: 30px;
	border: 2px solid #AA68D5;
	font-weight: 600;
}

.btn-col:hover {
	background-color:darkorchid;
	border: 2px solid #C5A5FD;
	color:antiquewhite;
}

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

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

footer {
	display: flex;
	flex-direction: row;
	align-items: baseline;
	justify-content: space-between;
	padding: 2rem;
	
}

.somedia-icon {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	gap: 1rem;
	align-items: center;
	font-size: 10px;
}

@media(max-width:992px){
	
	.header {
		display: block;
	}
	
	.hero {
		display: block;
		justify-content: center;
		
	}
	
	h1 {
		display: block;
		justify-content: center;
	}
	
	.row {
		display: block;
	}
	
	.btn-col {
		display: block;
		margin: auto;
	}
	
	.btn-main {
		display: block;
		margin: auto;
	}
	
	footer {
		display: block;
	}
	
	.somedia-icon {
		display: block;
	}
}



