* {
	box-sizing: border-box;
}

body {
	margin: 0;
	max-width: 1920px;
	max-height: 1080px;
	background: url('../images/background.png') no-repeat fixed top;
	background-size: cover;
	font-family: Arial, sans-serif;
	color: #a1a1a1;
}

.header {
	width: 100%;
	max-width: 400px;
	height: auto;
	overflow: hidden;
	position: fixed;
	padding: 33px 33px;
	color: #990000;
}

.topnav {
	overflow: hidden;
	position: fixed;
	top: 0;
	width: 100%;	
}

.topnav a {
	float: right;
	display: block;
	color: #a1a1a1;
	text-align: center;
	padding: 33px 33px;
	font-size: 16px;
	text-decoration: none;
}

.topnav a:hover {
	transform: rotate(-15deg);
	color: #990000;
}

.topnav a.active {
	color: #990000;
}

.topnav .icon {
	display: none;
} 

@media screen and (max-width: 600px) {
	.topnav a:not(:first-child) {display: none;}
	.topnav a.icon {
		float: right;
		display: block;
	}
}

@media screen and (max-width: 600px) {
	.topnav.responsive {position: relative;}
	.topnav.responsive a.icon {
		position: absolute;
		right: 0;
		top: 0;
}
.topnav.responsive a {
	float: none;
    display: block;
    text-align: left;
  }
} 

.row {
    display: flex;
}

.side {
	margin-top: 200px;
	padding-left: 30px;
	width: 30%;
}

.main {
	margin-top: 200px;
	padding-left: 20%;
	width: 70%;
}

.flex-cont {
	display: flex;
}

.left {1
	padding-left: 30px;
	width: 50%;
}

.right {1
	padding-left: 20%;
	width: 50%;
}

@media screen and (max-width: 700px) {
.row, {   
    flex-direction: column;
  }
}

img {
	border-radius: 3%;
}

.row:after {
	content: "";
	display: table;
	clear: both;
}

@media screen and (max-width: 600px) {
.column {
    width: 100%;
  }
}

.card {
	float: left;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	margin: 8px;
}

.about-section {
	padding: 20px;
	color: #a1a1a1;
}

.container {
	padding: 0 16px;
	color: #a1a1a1;
}

.container::after, .row::after {
	content: "";
	clear: both;
	display: table;
}

.title {
	color: #990000;
}

@media screen and (max-width: 650px) {
.column {
	width: 100%;
    display: block;
  }
}

input[type=text], select, textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #990000;
	background-color: #090909;
	color: #a1a1a1;
	margin: 5px 10px;
	resize: vertical;
}

input[type=submit] {
	background-color: #090909;
	color: #a1a1a1;
	padding: 12px 20px;
	border: none;
	cursor: pointer;
}

input[type=submit]:hover {
	transform: rotate(-15deg);
	color: #990000;
}

.container {
	border-radius: 5px;
	padding: 10px;
}

.column {
	float: left;
	width: 50%;
	padding: 20px;
	margin-top: 6px;
}

.row:after {
	content: "";
	display: table;
	clear: both;
}

@media screen and (max-width: 600px) {
.column, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}

div.gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

div.gallery-item {
	margin: 5px;
	border: 1px solid #ccc;
	width: 22%;
}

div.gallery-item:hover {
	border: 1px solid #777;
}

div.gallery-item img {
	width: 100%;
	height: auto;
}

div.gallery-item div.desc {
	padding: 15px;
	text-align: center;
}

@media only screen and (max-width: 700px) {
div.gallery-item {
    width: 45%;
  }
}

@media only screen and (max-width: 500px) {
div.gallery-item {
    width: 100%;
  }
}

.wrapper {
	margin-top: 300px;
	display: flex;
	grid-template-columns: auto auto auto;
	padding: 10px;
}

video {
	position: relative;
	border: 1px #a1a1a1;
	margin-top: 30px;
	width: 640px;
	height: 360px;
}

video:focus {
	outline-style: none;
}

/* Style the footer */
.footer {
	padding: 10px;
}

