/* Reset */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Variables */

:root {
	--max-width: 1100px;
	--white: #fff;
	--dark-grey: #333;
	--primary-color: #008cba;
	--secondary-color: #00a8b4;

	--background-color1: #f1f1f1;
	--background-color2: #aaa;
	--background-color3: #bbb;
	--background-color4: #ccc;

	--modal-color: #eae6e3;
}

/* General */

body {
	background-color: var(--white);
	color: var(--dark-grey);
	font-family: "Roboto", sans-serif;
}

a {
	text-decoration: none;
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

input {
	cursor: pointer;
}

/* Utility Classes */

.D-flex {
	display: flex;
}

.center {
	justify-content: center;
	align-items: center;
}

.flex--wrap {
	flex-wrap: wrap;
}

.max-width-1200px {
	max-width: 1200px;
}

.full-width {
	width: 100%;
}

.vh-full {
	height: 100vh;
}

/* Height Utility Classes */

.full-height {
	height: 100%;
}

.height-15vh {
	height: 15vh;
}

.height-70vh {
	height: 70vh;
}

/* Background Colors */

.bg-color1 {
	background-color: var(--background-color1);
}

.bg-color2 {
	background-color: var(--background-color2);
}

.bg-color3 {
	background-color: var(--background-color3);
}

.bg-color4 {
	background-color: var(--background-color4);
}

.padding-50 {
	padding: 50px;
}

/* Typography */

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
}

p {
	font-size: 1.2rem;
	line-height: 1.5;
}

/* Layout for Main Section */

.main_section {
	width: 100%;
	display: flex;
}

.nav_section,
.aside_section {
	flex: 1;
	height: 100%;
}

.article_section {
	flex: 2;
	height: 100%;
}
