body {
  background-image: url('/images/panorama.1300x650.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  font-family: Arial, Helvetica, sans-serif;
}

@media screen and (min-width: 800px) and (max-width: 1100px) {
  body {
    background-image: url('/images/panorama.672x1000.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
  }
}

.menubtn {
  background-color: rgba(44, 149, 210, 0.6);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 30px;
  padding: 12px;
  border-style: solid;
  border-radius: 20px;
	border-color: black;
	border-width: 4px;
  cursor: pointer;
  width: 330px;
  height: 70px;
}

@media screen (min-width: 700px) and and (max-width: 1100px) {
  .menubtn {
    background-color: rgba(44, 149, 210, 0.8);
    backdrop-filter: blur(20px);
    color: blue;
    font-size: 40px;
    padding: 12px;
    border-radius: 20px;
	border-color: black;
	border-width: 4px;
    cursor: pointer;
    width: 400px;
    height: 100px;
  }
}

.menubtn:hover {
  background-color: DodgerBlue;
}

.rightMenu {
  display: table;
  float: right;
  top: 0px;
}

.leftMenu {
  display: table;
  float: left;
  top: 0px;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
	height: 180px;
	background-color: rgba(44, 149, 210, 0.2);
  backdrop-filter: blur(5px);
	font-family: Arial, Verdana, sans-serif;
	font-weight: bold;
	font-size: 20px;
  color: white;
  text-align: center;
}


@media screen and (min-width: 800px) and (max-width: 1100px) {  
  .footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 250px;
  background-color: rgba(44, 149, 210, 0.2);
  backdrop-filter: blur(5px);
  font-family: Arial, Verdana, sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: white;
  text-align: center;
  }
}

.notextfooter {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
	height: 180px;
}

.featured {
  width: 700px;
	height: 120px;
  margin: auto;
  background-color: rgba(44, 149, 210, 0.4);
  backdrop-filter: blur(5px);
  padding: 0px;
	line-height: 0.3;
	font-family: Arial, Verdana, sans-serif;
	font-weight: bold;
	font-size: 30px;
	color: white;
	border-style: solid;
  border-radius: 20px;
	border-color: black;
	border-width: 4px;
}

.centerSpacer {
    width: 10;
    height: 10;
    background: none;
}

@media screen and (min-width: 800px) and (max-width: 1100px) {  
  .centerSpacer {
    background-color: none;
    width: 10px;
    height: 900px;
  }
}

@property --_w {
  syntax: '<length>';
  inherits: true;
  initial-value: 100vw; 
}
@property --_h {
  syntax: '<length>';
  inherits: true;
  initial-value: 100vh; 
}
:root {
  --w: tan(atan2(var(--_w),1px));
  --h: tan(atan2(var(--_h),1px)); 
}

h2:before {
  content: counter(w) "x" counter(h);
  counter-reset: h var(--h) w var(--w);
}

