:root {
  	--color1: #37c39a;
}
* {
  box-sizing: border-box;
}
html, body {
	font-family: 'Open Sans', sans-serif;
	background-color: #000000;
	color: #ffffff;
	margin: 0;
}
#background-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}
.content {
	z-index: 999;
  height: 300px;
  position: fixed;
  top:0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}
.content img {
	max-width:80%;
	margin: 0px auto;
}
#hamburger {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 9999;
}
.hoverable {
  display: none;
  position: absolute;
  top: 40%;
  left: 0px;
  width: 100%;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  font-weight: 900;
}
.hoverable-content {
  cursor: pointer;
}
#closeProjectBtn {
  display: none;
}
.main-container {
    overflow: hidden;
    position: relative;
    width:100%;
}

.main-container::after {
    display: block;
    content: '';
}

.main-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
p {
  background-color: none;
}
.project-thumb {
  cursor: pointer;
}