
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

html {
  height: 100%;
}

body {
  font-family: arial;
  margin: 0;
  background: #f9f4f0;
  height: 100%;
}

.fullcontainer{
  overflow-x: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

header{
  text-align: justify;
  width: 100%;
  padding: 60px;
  background-image: linear-gradient(#eed1bb, #c45f24);
}

.navbar{
  font-size: 150%;
  background-color: #c45f24;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-weight: bold;
  order: 2;
  flex-wrap: wrap;
}

.navbar a{
  color: black;
  padding: 14px 20px;
  text-decoration: none;
  text-align: center;
}

.navbar a:hover{
  color: rgb(68, 27, 3);
}

.navbar a:visited{
  color: #312013;
}

ul{
  list-style: none;
}

.center{
  text-align: center;
  font-size: 20px;
}

.row{
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
}

.side{
  flex: 30%;
  background-color: white;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 20px;
  order: 3;
}

.inline-flex-parent {
  display: inline-flex;
}

.main{
  flex: 70%;
  background-color: #f0c8a7;
  padding: 20px;
  display: flex;
  justify-content: flex-start;
  padding-bottom: 6em;
  align-items: center;
  text-align: center;
  flex-direction: column;
  order: 4;
}

.image{
  background-color: #f0c8a7;
  width: 100%;
  padding: 20%
}

h1 {
  color: black;
  font-size: min(3em, 12vw);
  hyphens: auto;
  font-weight: bold;
  text-align: center;
  padding-top: 22px;
}

h2 {
  color: black;
  font-size: 33px;
  font-weight: bold;
  text-align: center;
}

h3 {
  font-size: 25px;
  text-align: center
}
 
#gallery {
  line-height:0;
  -webkit-column-count:5; /* split it into 5 columns */
  -webkit-column-gap:5px; /* give it a 5px gap between columns */
  -moz-column-count:5;
  -moz-column-gap:5px;
  column-count:5;
  column-gap:5px;
}

#gallery img {
  width: 100% !important;
  height: auto !important;
  margin-bottom:5px; /* to match column gap */
}

#gallery img:hover {
  filter: brightness(1.2);
}

.imgcontainer{
  position: relative;
  display: none;
}

.closebtn{
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
  font-size: 35px;
  cursor: pointer;
}

.wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("https://i.postimg.cc/8cBkyxyR/MS-Paint-Microsoft-Paint-Online-5.png");
  background-size: 1000px 100px;
}

.wave#wave1 {
  z-index: 1000;
  opacity: 0.1;
  bottom: 0;
  animation: animateWaves 6s linear infinite;
}

.wave#wave2 {
  z-index: 999;
  opacity: 0.2;
  bottom: 10px;
  animation: animate 7s linear infinite !important;
}

.wave#wave3 {
  z-index: 1000;
  opacity: 0.2;
  bottom: 15px;
  animation: animateWaves 8s linear infinite;
}

.wave#wave4 {
  z-index: 999;
  opacity: 0.3;
  bottom: 20px;
  animation: animate 9s linear infinite;
}

@keyframes animateWaves {
  0% {
    background-position-x: 1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}

@keyframes animate {
  0% {
    background-position-x: -1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}

.footer {
  position: relative;
  width: 100%;
  background-image: linear-gradient(rgb(209, 120, 60), #eed1bb);
  padding: 20px 0px;
  font-size: 0.8em;
}

.container{
  display: flex;
  justify-content: space-around;
  max-width: 800px;
  margin: 0 auto;
  align-items: center;
  flex-direction: row;
}

.container a{
  color: black;
  padding: 14px 20px;
  text-decoration: none;
  text-align: center;
}

.container a:hover{
  color: grey;
}

.container a:visited{
  color: grey;
}

#map {
  border:#312013;
}

main-title{
  color: black;
  color: black;
  font-size: 33px;
  font-weight: bold;
  text-align: center;
  margin: 1em 0;
}

table.schedule {
  border: none;
}

table.schedule tr {
  border-spacing: 1em;
}

table.schedule tr>td:last-of-type {
  text-align: right;
}