@media (min-width: 576px) {
  html {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

@media (min-width: 992px) {
  html {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  html {
    font-size: 20px;
  }
}

@font-face {
    font-family: 'Mermaid';
    src: url('static/Mermaid1001.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial;
}

img {
  max-width: 100%;
/*  height: auto;*/
}

main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: center;
  text-align: center;
  /*background: white;*/
  color: #DD99BB;
  text-shadow: 5px 5px 2px black;
  overflow: hidden;
}

section {
  min-height: 100vh;
  justify-content: center;
  text-align: center;
  color: white;
  /*background: white;*/
}

.bg-gif {
  position: fixed;
  margin: 0;
  padding: 0;
  overflow: hidden;
  align-self: center;
  z-index: -100;
  width: 100vw;
  height: 100vh;
  background: black;
}

.bg-gif > img {
  position: absolute;
  top: 50%;
  left: 49%;
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
  height: 150vh;
  object-fit: cover;
}

.title {
  font-size: 3.4em;
  font-weight: 600;
  font-family: Mermaid;
  padding: 0 0 20px 0;
}

.subtitle {
  font-size: 2.5rem;
  font-weight: 300;
  font-family: Mermaid;
}

.infotext {
  font-size: 1.25rem;
}

.textbg {
  background: black;
  border-radius: 10px;
  margin: 10px;
  padding: 20px 30px 20px 30px;
}

.cellholder {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 0 10px 0;
}

.cell {
  /*border: 4px solid black; */
  /*background: black;*/
  color: white;
  display: inline-block;
  max-width: 1200px;
  border-radius: 10px;
  margin: 20px 10px 20px 10px;
  padding: 0 40px 0 40px;
}

.cell > .subtitle {
  max-width: 1200px;
}

.icons-social i {
  font-size: 3em;
  padding: 10px;
}

.image {
  border-radius: 50%;
  padding: 1%;
}