body{
  background-color: #eeece7;
  margin: 0;
  padding: 0;
  /* overflow: scroll; */
}
.container{
  padding: 0 100px;
  width: calc(100% - 200px);
  margin: 0 auto;
  /* background-color: rgb(255, 255, 255); */
  border-radius: 50px;
}
h1 {
  font-family: 'Fjalla One', sans-serif;
}
h2 {
  font-family: 'Fjalla One', sans-serif;
}
p{
  color: #0c0701ff;
  font-family: 'Fjalla One', sans-serif;
}
h1, h2{
  color: #ffffff;
  text-shadow: 2px 2px #000000;
}
span{
  font-family: 'Fjalla One', sans-serif;
  color: rgba(0, 0, 0, 0.82);
  font-size: 14px;
}
.panel{  
  background-color: #5e7b5ff1;
  box-shadow: 0px 2px 5px #000000;
  overflow: hidden;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.background{
  position: relative;
}
.bg-image-big{
  z-index: -1;
  position: absolute;
  padding: 0px 50px;
  width: calc(100% - 100px);
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}
.wave{
  width: 100%;
  height: auto;
  margin-bottom: -10px;
}
.wave-upsidedown{
  margin-top: -10px;
  margin-bottom: 5px;
  transform: scale(-1);
}

@media(max-width:800px){
  .container{
    padding: 0 50px;
  }
}

@media(max-width:600px){
  h1 {
    font-size: 22px;
    margin: 8px 0px;
  }
  h2 {
    font-size: 18px;
  }
  p{
    font-size: 14px;
  }
  .wave{
    margin-bottom: -8px;
  }
  .wave-upsidedown{
    margin-top: -10px;
    margin-bottom: 5px;
  }
  span{
    font-size: 12px;
  }
}