* {
	text-align: center;
	color: red;
}
h1 {
	font-size: 150;
	margin-bottom: 1px;
}
h2 {
	font-size:60;
}
.to-parent {
	font-size: 20px;
	text-decoration: none;
	transition: all 1s ease;
}
.to-parent:hover{
	background-color: black;
	color: white;
	box-shadow: 3px 3px 7px black
}
body {
	background: linear-gradient(to right, #cc0000 0%, #cc0000 8%, #000000 8%, #000000 92%, #cc0000 92%, #cc0000 100%);
	margin-right: 400px;
	margin-left: 400px;
}
p {
	font-size: 30px;
}
img {
	border-radius: 16px;
	border-style: solid;
	border-color: red;
	transition: all 1s ease;
}
img:hover {
	transform: scale(1.03);
	filter: saturate(120%);
}
.image-left {
	float: left;
	margin-right: 15px;
}
.image-right {
	float: right;
	margin-left: 15px;
}
.bar {
	border-bottom: 5px solid red;
	margin-top: 60px;
}
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: black;
}
li a {
  display: block;
  text-align: center;
  padding: 8px 16px;
  text-decoration: none;
  transition: all 1s ease;
}
li a:hover {
  background-color: black;
  color: white;
  transform: scale(1.3);
  box-shadow: 3px 3px 7px black
}
.vid-left {
	float: left;
	margin-right: 15px;
}
.vid-right {
	float: right;
	margin-left: 15px;
}
footer {
	background-color: #4a4a4a;
	height: 850px;
	margin-top: 60px;
}
.container {
  display: grid;
  grid-template-columns: auto auto auto;
  padding: 10px;
}
.container a {
  background-color: #7d7d7d;
  border: 1px solid black;
  padding: 10px;
  font-size: 40px;
  text-align: center;
  text-decoration: none;
  color: #db2012;
  transition: all 1s ease;
}
.container a:hover {
  color: white;
  transform: scale(1.2);
}
.container2 {
  display: grid;
  grid-template-columns: auto auto auto;
  padding: 10px;
  height: 35px;
}
.container2 a {
  background-color: #7d7d7d;
  border: 1px solid black;
  padding: 7px;
  font-size: 30px;
  text-align: center;
  text-decoration: none;
  color: #db2012;
  transition: all 1s ease;
}
.container2 a:hover {
  color: white;
  transform: scale(1.2);
}
a.Home {
	font-size:60;
	text-decoration: none;
}