body {
    background-image: url(../assets/backgroundPattern.png);
    font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";
    font-feature-settings:normal;
    font-variation-settings:normal;
    color: rgb(46, 46, 46);
  }
p {
  color: rgb(46, 46, 46);
  margin-bottom: 15px;
  text-align: justify;
}
p.bold {
  font-weight: bold;
}

h1 {
    font-weight: 500;
    font-size: 40px;
    color: rgb(46, 46, 46);    
    margin-top: 50px;
    margin-bottom: 20px;
}

iframe {
  width: 800px;
  height: 450px;
}
h2 {
    font-weight: 500;
    font-size: 30px;
    color: rgb(46, 46, 46);    
    margin-top: 50px;
    text-align: left;
    margin-bottom: 15px;
}

.events {
  display: block;
  position: relative;
}
.event {
  width: calc(100% - 40px);
  border: 2px dotted #968869;
  padding: 20px 20px 20px 20px;
  margin-bottom: 20px;
}

.pageWrapper {
    width: calc(100% - 400px);
    margin-left: auto;
    margin-right: auto;
    max-width: 1300px;
    clear: both;
    overflow: both;
    position: relative;
    text-align: center;
}

div.subnav {
    position: relative;
    display: block;
    text-decoration-color: white !important;
    float: left;
    width: auto;
    color: grey !important;
    margin-right: 20px;
    font-size: 18px;
}
div.subnav a{
    color: grey !important;
}

.menuWrapper {
    max-height: 150px;
    clear: both;
    display: block;
    width: 100%;
    height: 150px;
}

.menuBackground {
    background-color: #081022c4;
    width: calc(100% + 800px);
    height: 150px;
    position: absolute;
    top: -15px;
    left: -400px;
    z-index: -1;
}

.contentWrapper {
    clear: both;
    animation: fadeIn 1s;
    padding-top: 0px;
    padding-bottom: 100px;
}
.contentWrapper.margin{
    padding-top: 80px;
}
.content{
  display: block;
  position: relative;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.logo{
    background-image: url(../assets/logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    width: 100%;
    height: 150px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.cleaner {
    clear: both;
    height: 1px;
    width: 100%;
    display: block;
}

@media screen and (max-width: 900px) {
  .pageWrapper {
    width: calc(100% - 40px);
  }
  .logo{
    max-width: calc(100% - 40px);
    max-height: 40vw;
  }

  iframe {
    width: 100%;
    height: calc(100vw * 0.56);
  }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.button{
  padding: 0px 40px 0px 40px;
  line-height: 40px;
  border: none;
  color: white;
	background-color: rgb(218, 151, 9);
  display: block;
  border-radius: 4px;
  font-size: 16px;
  margin: 0 0 0 0;
  cursor: pointer;
  margin-bottom: 20px;
}