@font-face{
    font-family: Breamcatcher;
    src: url('breamcatcher.ttf');
  }
html{
    margin: 0;
    padding:0;
    width: calc(99vw);
    height: calc(100vh);
}
body{
    display: inline-block;
    background-color: #000;
    margin: 0;
    padding:0;
    width: calc(99vw);
    height: calc(100vh);
}
a:link {
    color: #bbe1fa;
    text-decoration: none;
}
a:visited {
    color: #bbe1fa;
    text-decoration: none;
}
a:hover {
    color: #3282b8;
    text-decoration: none;
}
a:active {
    color: #3282b8;
    text-decoration: none;
}
.main-body {
    display: inline-block;
    background-color: #1B262C;
    /*background-image: url("../images/main_body_background.jpg");*/
    margin: 0;
    padding: 0;
    width: calc(86.5vw);
    min-width: calc(86.5w);
    max-width: calc(86.5vw);
    height: calc(80vh);
    min-height: calc(80vh);
    vertical-align: top;
    overflow: auto;
    right: 0;
    color: white;
    font-family: 'Nunito Sans', sans-serif;
    font-size: large;
    text-shadow: 1px 1px #000000, 1px -1px #000000, -1px 1px #000000, -1px -1px #000000;
}
.sidebar{
    display: inline-block;
    margin: 0;
    padding: 0;
    width: calc(12vw);
    min-width: calc(12vw);
    max-width: calc(12vw);
    height: calc(80vh);
    min-height: calc(80vh);
    vertical-align: top;
    background-color: #0f4c75;
    color: #bbe1fa;
    font-family: Breamcatcher;
    font-size: xx-large;
}
.header{
    font-family: Breamcatcher;
    font-size: 6em;
    display: block;
    margin: 0;
    padding:0;
    width: calc(99vw);
    height: calc(10vh);
    min-height: 125px;
    background-color: black;
    color: white;
}
.footer{
    display: block;
    margin: 0;
    padding:0;
    width: calc(100vw);
    height: calc(7vh);
    background: #000;
    color: white;
}
.right{
    position: absolute;
    margin: 0;
	margin-bottom: 10px;
    padding: 0;
    right: 25px;
    top:0;
	border-radius: 15px 15px 15px 15px;
	background-color: #000;
	border: #000 solid 2px;
}
/*.photo{
    background-color: #fefefe;
}*/
.photo img{
	height: calc(25vh);
	min-height: 150px;
}
.photo img:hover{
    box-shadow: 5px 10px 18px #0f4c75;
}
#gallerytable{
    display: flex;
    justify-content: center;
}
#gallerytable td{
    padding-right: 75px;
    padding-bottom: 75px;
}
/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
}
  
/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
}
  
/* The Close Button */
.close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
}
  
.close:hover,
.close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}
  
.backyardSlides {
    display: none;
}
#bottomlogo{
	height: calc(7vh);
	min-height: 75px;
}
#toplogo{
	height: calc(15vh);
	min-height: 150px;
}
iframe{
    width: calc(85.6vw);
    height: calc(80vh);
    min-width: calc(12vw);
}
* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 55%;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
/* Position the "previous button" to the left */
.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
  }
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}