html {
  background: rgba(26, 26, 26, 1);
  color: rgba(214, 214, 214, 1);
}

html,
body {
  margin: 0;
}

.main-cont {
  min-height: calc(100vh - 70px);
  width: auto;
}
/* Navigation */
.navigation ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}
.navigation li {
  float: left;
  border-right: 1px solid #bbb;
}
.navigation li:last-child {
  border-right: none;
  right: 0;
}
.navigation li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
.navigation li a:hover:not(.current) {
  background-color: #111;
}
.navigation form {
  display: block;
  float: right;
}
.navigation form a {
  display: inline-block;
}

.videoplayer {
	display: none;
	position: absolute;
	min-width: 250px;
	left: -250px;
	transition: margin .4s;
	overflow: hidden;
}

.search {
  display: inline-flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-grow: 2;
  float: right;
}
/* Navigation end */

.mainsearch {
  display: flex;
  flex-direction: column;
  justify-content: left;
	width: 20%;
	gap: 10px;
}

.clipofday {
	display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
}

/* Footer */
.footer {
  text-align: center;
  height: 50px;
}
/* Footer end*/

