@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

body {
    height: 1000px;
	padding: 0;
    margin: 0;
	font-family: 'Press Start 2P', sans-serif;
	background-image: url("background-image.png");
	background-attachment: fixed;
}

table {
	width: 100%;
	padding: 15px;
}

a:hover, a:visited, a:link, a:active
{
    text-decoration: none;
	color: #fff;
}

.bodytext {
	font-family: 'VT323';
	font-size: 25px;
	text-align: justify;
    text-justify: inter-word;
}

.copytext {
	font-family: 'VT323';
	font-size: 15px;
    text-justify: inter-word;
}

.info {
	padding: 30px;
	text-decoration: none;
	color: #000;
}

.banner
{
	width: 100%;
	height: 100vh;
	overflow: hidden;
	display: flex;
	justify-content: center;
	margin: auto;
}

.banner video
{
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	width: 100%;
	height: 100%;
	pointer-events: none;
	transform: rotateZ(0);
}

.banner .content
{
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	max-width: 1000px;
	margin: 0;
	text-align: center;
}

.banner .content h1
{
	margin: 0;
	padding: 0;
	font-size: 28pt;
	color: #fff;
}

.banner .content p
{
	font-size: 16pt;
	color: #fff;
}

.logo {
	max-width: 70%;
	max-height: 60%;
	justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
}

.header {
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  background-color: #000000;
  color: #fff;
  justify-content: center;
  text-align: center;
}

.header2 {
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  color: #fff;
  justify-content: center;
}

.area-one-container {
  max-width: 1400px;
  margin: 40px auto 0 auto;
}

.area-one-content {
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 20px;
  flex: 5;
  background-color: #000;
  color: #fff;
}

.area-one-image {
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 20px;
  flex: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}


.area-two-container {
  max-width: 1400px;
  margin: 40px auto 0 auto;
}

.area-two {
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 20px;
  flex-basis: 30%;
  justify-content: center;
  text-align: center;
  color: #fff;
	
}
.area-two a:hover {
  background-color: #fff;
  color: black;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.footer {
  padding: 0px;
  box-sizing: border-box;
  background-color: #000000;
  color: #fff;
  justify-content: center;
  text-align: center;
}

.footer-links {
  font-size: 8pt;
}

.footer-links a:hover {
  background-color: #fff;
  color: black;
  text-align: center;
  text-decoration: none;
  display: inline-block;	
}

.area-two:nth-child(1) {background-color: #000;}
.area-two:nth-child(2) {background-color: #000;}
.area-two:nth-child(3) {background-color: #000;}

.container{
	position: relative;
	background: #000;
}

.container .image-container{
	max-width: 1200px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
	margin: auto;
}

.container .image-container .image{
	height: 225px;
	width: 200px;
	border: 10px solid #000;
	box-shadow: 0 5px 15px rgba(0,0,0,.1);
	overflow: hidden;
	cursor: pointer;
}

.container .image-container .image img{
	height: 100%;
	width: 100%;
	object-fit: cover;
	transition: .2s linear;	
}

.container .image-container .image:hover{
	border-color: white;
}

.container .image-container .image:hover img{
	transform: scale(1.1);
}


.parallax-window {
    min-height: 150px;
    background: transparent;
	box-shadow: 0px 0px 45px -4px;
}

.fixed-size-container {
  max-width: 1400px;
  margin: 10px auto 0 auto;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}

.fixed-size-container img{
  padding: 30px;
}

.fixed-size {
  width: 150px;
  height: 100px;
  background-color: #990b47;
  color: #FFF;
  line-height: 100px;
  text-align: center;
  font-weight: bold;
  font-size: 60px;
  margin-bottom: 20px;
}

#full-bg {
  display: none;
}
#video video{
    width:100%;
}
@media (max-width: 767px) {
  #video {
    display: none;
  }
  #full-bg {
	z-index: -1;
    display: block;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
  }
}
@media (min-width: 800px) {
  .column-layout {
    display: flex;
    justify-content: space-between;
  }
  .area-one-container {
    display: flex;
    justify-content: space-between;
  }
  .area-two-container {
    display: flex;
    justify-content: space-between;
  }
}