html {
  scroll-behavior: smooth;
  height: 100%;
}
body {
  margin: 0;
  height: fit-content;
  background-color: rgb(55, 177, 181);
  padding-bottom: 2vw;
}
.main_content {
  width: 100%;
  margin: 0;
  background-color: rgb(55, 177, 181);
}
.header {
  background-color: rgb(55, 177, 181);
  width: 100%;
  margin: auto;
  padding-bottom: 2vw;
}
.header p {
  text-align: center;
}
.head1 {
  font-size: 13vw;
  margin: 0;
  padding-top: .5em;
  font-family: berlin_sans_fb_demi;
  color: white;
  text-shadow: black 0px 6px 15px;
}
.head2 {
  font-size: 13vw;
  margin: 0;
  font-family: berlin_sans_fb;
  letter-spacing: .12em;
  color: rgb(28, 83, 85);
}
.info_box {
  margin: auto;
  margin-top: 2em;
  width: 70%;
  height: fit-content;
  border: 1px solid white;
  box-shadow: rgb(28, 83, 85) 0px 0px 25px;
  padding: 4vw;
}
.no_event{
  text-align: center;
  padding: 2em;
  color: white;
  font-size: 5vw;
}
.title {
  text-align: center;
  font-family: berlin_sans_fb;
  font-size: 8vw;
  margin: 0;
  padding-top: 2vw;
  color: white;
}
.sub-title {
  text-align: center;
  font-family: berlin_sans_fb;
  font-size: 5vw;
  margin: 0;
  padding-top: 1.5vw;
  padding-bottom: 4vw;
  color: rgb(28, 83, 85);
}
.info-header {
  margin: auto;
  border-bottom: 1px solid white;
  width: fit-content;
}
.info-text {
  color: white;
  text-align: center ;
  font-size: 4vw;
  
} 
.info-text a {
  color: white;
  text-decoration: none;
  font-size: 5vw;
}
.info-text a::before {
  content: "\21D2  ";
}
.info-text a::after {
  content: " \21D0";
}
.info-text a:hover {
  color: rgb(28, 83, 85);
}
.nav {
  background-color: rgb(55, 177, 181);
  padding: 25px;
  border-radius: 25px;
  border: 1px solid white; 
  position: fixed;
  margin-bottom: 6vw;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 1000px) {
  .head1 {
    font-size: 5vw;
  }
  .head2 {
    font-size: 5vw;
  }
  .info_box {
    width: 300px;
    padding: 2vw;
  }
  .title {
    font-size: 2.5vw;
    padding-top: 0vw;
  }
  .sub-title {
    font-size: 1.5vw;
    padding-bottom: 1.5vw;
  }
  .info-text {
    font-size: 1.5vw;
  }
  .info-text a {
    font-size: 1.4vw;
  }
  .main_content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-around;
  }
}
@media (min-width: 2000px) {

  .info_box {
    width: 500px;
  }

}

@font-face {
  font-family: berlin_sans_fb_demi;
  src: url('./font/berlin_sans_fb_demi/berlin_sans_fb_demi.ttf');
}
@font-face {
  font-family: berlin_sans_fb;
  src: url('./font/berlin_sans_fb/berlin_sans_fb.ttf');
}