﻿a:link 
{
	color: rgb(255, 208, 0);
}

a:visited 
{
	color: rgb(197, 151, 0);
}

a:hover 
{
	color: rgb(229, 255, 0);
}

a:active 
{
	color: rgb(255, 0, 234);
}

img 
{
	width: 100%;
	height: auto;
	box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.1); /*shift, size*/
	align-items: center;
}

div 
{
	/* border: 1px solid black; */
	display: block;
	margin-left: auto;
	margin-right: auto;
	/*
	width: clamp(20px, 96%, 1400px);/*min, preferred, max*/
	margin-top: 10px;
	margin-bottom: 10px;
	/* margin-right: 3%; */
	/* margin-left: 3%; */
	background-color: rgba(60, 60, 60, 0);
	/* max-width: 1200px; */
	/* font-family: Georgia, 'Times New Roman', Times, serif; */
	/* font-family:Verdana, Geneva, Tahoma, sans-serif; */
	font-family: 'Open Sans', sans-serif;
	/* font-size:1.4vw; */
	font-size: clamp(9px, 1.4vw, 14px);
	color: rgb(202, 202, 202);
	padding-top: 10px;
	/* padding-right: 10px; */
	padding-bottom: 10px;
	/* padding-left: 10px; */
	align-items: center;
	
}

body 
{
  background-color: rgb(60, 60, 60);
	align-content: center;
	align-items: center;
	justify-content: center;
}

h1
{
	color: rgb(255, 255, 255);
}

h3
{
	/* color: rgb(255, 255, 255); */
	/* padding-bottom: 0px;
	padding-top: 0px; */
	margin-top: 10px;
	margin-bottom: 0em ;
}

/* For portrait, we want the tool bar on top */

@media screen and (orientation: portrait) {
  div {
    width: clamp(20px, 99%, 1400px);/*min, preferred, max*/
		font-size: clamp(3px, 3.4vw, 60px);
  }
}

/* For landscape, we want the tool bar stick on the left */

@media screen and (orientation: landscape) {
  div {
		width: clamp(20px, 92%, 1400px);/*min, preferred, max*/
		font-size: clamp(9px, 1.4vw, 14px);
  }
}

video 
{
	position: fixed;
	 right: 0;
	 bottom: 0;
	 /* min-width: 100%;
	 min-height: 100%; */
	 width: 10%;
	 height: 10%;
	 z-index:-1;
	 /*to edit the opacity effect change the percentage below */
	 /* filter:opacity(5%);  */
	 /* blur(30px); */
	 /* filter:; */
	 /* filter:blur(15px); */
	 /* transform: translateX(10%) translateY(40%);} */
}

