/* =========================
   GLOBAL
========================= */

* {
	box-sizing: border-box;
}

body {
	font-family: Helvetica, Verdana, Arial, sans-serif;
	background: #ECEDE6;
	background-image: url(../circles2.jpg);
	background-repeat: repeat;
	background-size: 100%;
	font-size: 14px;
	margin: 0;
	padding: 0;
	color: #000;
}

td,
th {
	font-family: Helvetica, Verdana, Arial, sans-serif;
}

h1 {
	margin: 0;
	padding: 0;
}

/* =========================
   MAIN WRAPPER
========================= */

#main {
	width: 990px;
	position: relative;
}

/* =========================
   HEADER
   EXACT SAME WIDTH AS .box
========================= */

#header {
	width: 680px;
	margin: 40px 0 30px 40px;
	padding: 25px 35px;
	background: rgba(255, 255, 255, 0.84);
	box-shadow:
		0 1px 2px rgba(0, 0, 0, 0.08),
		0 8px 20px rgba(0, 0, 0, 0.05);
}

#header h1 {
	font-size: 24px;
	text-shadow: 2px 1px 1px #bbb;
}

/* =========================
   MAIN CONTENT BOXES
========================= */

.box {
	width: 680px;
	margin: 20px 0 20px 40px;
	box-shadow:
		0 1px 2px rgba(0, 0, 0, 0.08),
		0 8px 20px rgba(0, 0, 0, 0.05);
}

.box-header {
	background: rgba(255, 255, 255, 0.84);
	padding: 25px 35px 0 35px;
}

.box-header h1 {
	font-size: 24px;
	text-shadow: 2px 1px 1px #ccc;
}

.box-content {
	background: rgba(255, 255, 255, 0.84);
	min-height: 50px;
	padding: 15px 35px;
	line-height: 1.4em;
}

.box-footer {
	/* not in use */
}

.box a {
	text-decoration: none;
	border-bottom: 1px dotted #000;
	color: #000;
}

/*
 * ABOUT
 */
.about .box-header h1 {
	color: #000;
}

.about a:hover {
	color: #7e8ee3;
	border-bottom-color: #7e8ee3;
}

/*
 * CONTACT
 */
.contact .box-header {
	background-image: url();
}

.contact .box-header h1 {
	color: #000;
}

.contact a:hover {
	color: #a9bd33;
	border-bottom-color: #a9bd33;
}

/*
 * BACKGROUND
 */
.background .box-header {
	background-image: url();
}

.background .box-header h1 {
	color: #000;
}

.background a:hover {
	color: #c12a2a;
	border-bottom-color: #c12a2a;
}

/* =========================
   SIDEBAR
========================= */

.sidebar {
	position: absolute;
	left: 750px;
	top: 0;
	width: 260px;
}

.sidebar-content {
	background: rgba(255, 255, 255, 0.84);
	border: 20px solid rgba(255, 255, 255, 0.84);
	padding: 20px;
	height: 255px;
	box-shadow:
		0 1px 2px rgba(0, 0, 0, 0.08),
		0 8px 20px rgba(0, 0, 0, 0.05);
	display: flex;
	align-items: center;
	justify-content: center;
}

.sidebar .label {
	padding-bottom: 15px;
}

.label {
	background: rgba(255, 255, 255, 0.84);
	padding: 12px 20px 15px 20px;
	box-shadow:
		0 1px 2px rgba(0, 0, 0, 0.08),
		0 8px 20px rgba(0, 0, 0, 0.05);
}

.label a {
	text-decoration: none;
	border-bottom: 1px dotted #000;
	color: #000;
}

.sidebar-link {
	margin: 100px 0 0 0;
}

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